Update function signatures and stuff

This commit is contained in:
Val 2022-09-02 06:22:18 -05:00
parent 0c17a2e75a
commit 33cfec8893
2 changed files with 8 additions and 8 deletions

View File

@ -4,10 +4,10 @@
#include "chernobyl_types.h" #include "chernobyl_types.h"
u16 _main (); u16 _main ();
u16 walk (u16 r15); u16 walk (u16 r15); // unused
u16 run (); u16 run ();
u16 *create_hash_table (u16 r15, u16 r14); u16 *create_hash_table (u16 exponent, u16 size);
u16 add_to_table (u16 *table, char *username, u16 pin); u16 add_to_table (u16 *table, char *username, u16 pin);
// Return address of a buffer from the table // Return address of a buffer from the table
// r15 = buffer address. r14 // r15 = buffer address. r14

View File

@ -1,4 +1,4 @@
// Just look at the function signatures in chernobyl.h and chernobyl_stdlib.h
#include "chernobyl.h" #include "chernobyl.h"
#include <stdio.h> #include <stdio.h>