s502 assembler
A very simple assembler for the 6502 line of processors written in C
|
implement istack member functions More...
Go to the source code of this file.
Functions | |
istack_ptr | istack_new () |
int | istack_empty (istack_ptr istack) |
int | istack_push (istack_ptr istack, int val) |
int | istack_pop (istack_ptr istack) |
int | istack_top (istack_ptr istack, int def) |
void | istack_free (istack_ptr istack) |
implement istack member functions
See istack.h if doxygen again refuses to show doc comments from there!
Definition in file istack.c.
int istack_empty | ( | istack_ptr | istack | ) |
Definition at line 26 of file istack.c.
References istack_el::next.
void istack_free | ( | istack_ptr | istack | ) |
Definition at line 59 of file istack.c.
References istack_el::istack_empty(), and istack_el::istack_pop().
istack_ptr istack_new | ( | ) |
int istack_pop | ( | istack_ptr | istack | ) |
int istack_push | ( | istack_ptr | istack, |
int | val | ||
) |
int istack_top | ( | istack_ptr | istack, |
int | def | ||
) |
Definition at line 53 of file istack.c.
References istack_el::istack_empty(), and istack_el::next.