#ifndef ASM_H #define ASM_H #ifndef UNIV_H #include "univ.h" #endif class Asm : public PadRcv { friend Instr; friend M68kInstr; char pub_filler[16]; virtual char *literaldelimiter(); virtual Instr *newInstr(long l); PUBLIC(Asm,U_ASM) Asm(Core*); char *kbd(char *); char *help(); void userclose(); void open(long=0); void banner(); }; #endif