almost all of stdio.h

This commit is contained in:
pommicket 2022-02-14 16:52:33 -05:00
parent d0d868433e
commit c15db88951
7 changed files with 403 additions and 62 deletions

View file

@ -3030,7 +3030,7 @@ function generate_code
generate_functions()
; generate code at the entry point of the executable
local main_addr
main_addr = ident_list_lookup(functions_addresses, .str_main)
main_addr = ident_list_lookup(functions_addresses, .str__main)
if main_addr == 0 goto no_main_function
; on entry, we will have:
@ -3066,7 +3066,7 @@ function generate_code
:no_main_function
die(.str_no_main_function)
:str_no_main_function
string Error: No main function.
string Error: No _main function.
byte 0
:too_much_code
die(.str_too_much_code)