mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 23:36:03 +00:00
18 lines
250 B
C
18 lines
250 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);
|
|
|
|
#endif
|