mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-07 01:51:17 -04:00
Fix start.s in stage2 of Fusee for argc/argv
This commit is contained in:
parent
353019a269
commit
c758b1188a
3 changed files with 27 additions and 9 deletions
|
@ -2,8 +2,12 @@
|
|||
#include "hwinit.h"
|
||||
#include "loader.h"
|
||||
|
||||
#include "stage2.h"
|
||||
|
||||
int main(void) {
|
||||
/* Allow for main(int argc, void **argv) signature. */
|
||||
#pragma GCC diagnostic ignored "-Wmain"
|
||||
|
||||
int main(int argc, void **argv) {
|
||||
entrypoint_t entrypoint;
|
||||
|
||||
/* TODO: What other hardware init should we do here? */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue