This includes both separate .md files, and documentation that was on the head of the .S source files. Retest everything as this was done, and fix a few easy things.
13 lines
190 B
NASM
13 lines
190 B
NASM
NAME main_module
|
|
data SEGMENT RW
|
|
dw 1000 dup(?)
|
|
DATA ENDS
|
|
stack stackseg 800
|
|
CODE SEGMENT ER use32 PUBLIC
|
|
main_start:
|
|
nop
|
|
nop
|
|
nop
|
|
CODE ENDS
|
|
END main_start, ds:data, ss:stack
|