s502 assembler
A very simple assembler for the 6502 line of processors written in C
pass_twothree.h
Go to the documentation of this file.
1 #ifndef GUARD_PASS23
2 #define GUARD_PASS23
3 
4 #include "state.h"
5 
20 int pass_two(State* s);
21 
29 int write_data(State* s);
30 
31 #endif
pass_two
int pass_two(State *s)
compilation pass 2
Definition: pass_twothree.c:19
State
Compiler pseudo-global state.
Definition: state.h:32
write_data
int write_data(State *s)
compilation pass 3
Definition: pass_twothree.c:69
state.h
implement State class