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

@@ -1,7 +1,8 @@
#include "utils.h"
#include "loader.h"
entrypoint_t load_payload(void) {
entrypoint_t load_payload(const char *bct0) {
/* TODO */
(void)(bct0);
return (entrypoint_t)NULL;
}