home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
assemblr
/
library
/
edit
/
fremacsr
/
mintlast.asm
< prev
next >
Wrap
Assembly Source File
|
1986-11-12
|
409b
|
26 lines
code segment public
public lastcode
lastcode label byte
code ends
data segment public
db -1 ;any non-zero value will do here.
public OUTPATSIZE, outpat, INPATSIZE, inpat
OUTPATSIZE equ 100
outpat db OUTPATSIZE dup(?)
INPATSIZE equ 256
inpat db INPATSIZE dup(?) ;lots of room.
public stackp
db 256 dup(?)
stackp label byte
public lomem
lomem label byte
data ends
end