s502 assembler
A very simple assembler for the 6502 line of processors written in C
|
int istack_push(istack_ptr istack, int val)
push one element to the istack
void istack_free(istack_ptr istack)
free all memory associated with a istack
struct _istack * next
pointer to next element or NULL
int istack_pop(istack_ptr istack)
pop the top of the istack
int istack_empty(istack_ptr istack)
check if the istack is empty or not
int istack_top(istack_ptr istack, int def)
get the top element of the istack
istack_ptr istack_new()
create an empty istack