1 /* MIX simulator, copyright 1994 by Darius Bacon */
2 #ifndef ASM_H
3 #define ASM_H
4 
5 #include "cell.h"
6 
7 /* --- The assembly buffer --- */
8 
9 extern Address here;
10 
11 Cell asm_fetch_field(Address address, unsigned L, unsigned R);
12 void asm_store_field(Address address, unsigned L, unsigned R, Cell cell);
13 
14 extern Address entry_point;
15 void set_entry_point(Address address);
16 
17 void assemble(Cell cell);
18 
19 #endif
20