s502 assembler
A very simple assembler for the 6502 line of processors written in C
pass_one.h
Go to the documentation of this file.
1 #ifndef GUARD_PASS_ONE
2 #define GUARD_PASS_ONE
3 
4 #include "tokenslist.h"
5 #include "state.h"
6 
22 int pass_one(State* s);
23 
24 #endif
State
Compiler pseudo-global state.
Definition: state.h:32
tokenslist.h
Implement TokensList.
state.h
implement State class
pass_one
int pass_one(State *s)
Compilation pass 1.
Definition: pass_one.c:19