mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
20 lines
196 B
Plaintext
20 lines
196 B
Plaintext
|
|
;--- test absolute externals
|
|
|
|
.model small
|
|
.stack
|
|
|
|
extern value1:abs
|
|
|
|
includelib <extern1.lib>
|
|
|
|
.code
|
|
|
|
start:
|
|
or al,value1
|
|
mov al,value1
|
|
mov ah,4ch
|
|
int 21h
|
|
|
|
end start
|