mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-23 19:07:19 +00:00
git-subtree-dir: crossassemblers/macro11 git-subtree-mainline: fc2c8875ca614c989a594d4cf266a9d4e1c98d1e git-subtree-split: 2a14ffe2519589011ffc4050d5d4fd6591fb4c3c command was: git subtree add --prefix=crossassemblers/macro11 git://github.com/Rhialto/macro11.git master
20 lines
291 B
C
20 lines
291 B
C
|
|
#ifndef ASSEMBLE__H
|
|
#define ASSEMBLE__H
|
|
|
|
|
|
#include "stream2.h"
|
|
#include "object.h"
|
|
|
|
|
|
|
|
#define DOT (current_pc->value) /* Handy reference to the current location */
|
|
|
|
int assemble_stack(
|
|
STACK *stack,
|
|
TEXT_RLD *tr);
|
|
int get_next_lsb(
|
|
void);
|
|
|
|
#endif
|