Use argc/argv in Stage 2

This commit is contained in:
Michael Scire
2018-04-08 05:13:15 -06:00
parent 39bf3cb800
commit c9909b34db
3 changed files with 17 additions and 4 deletions

View File

@@ -3,6 +3,6 @@
typedef void (*entrypoint_t)(int argc, void **argv);
entrypoint_t load_payload(void);
entrypoint_t load_payload(const char *bct0);
#endif