mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-29 21:21:34 +00:00
git-subtree-dir: crossassemblers/macro11 git-subtree-mainline:fc2c8875cagit-subtree-split:2a14ffe251command 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
|