s502 assembler
A very simple assembler for the 6502 line of processors written in C
loadfile.h
Go to the documentation of this file.
1 #ifndef GUARD_LOADFILE
2 #define GUARD_LOADFILE
3 
4 #include "tokenslist.h"
5 
21 TokensList* load_file(char* name);
22 
23 #endif
load_file
TokensList * load_file(char *name)
load and parse one file
Definition: loadfile.c:166
tokenslist.h
Implement TokensList.
TokensList
A doubly-linked list for storing Tokens.
Definition: tokenslist.h:29