mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
15 lines
165 B
NASM
15 lines
165 B
NASM
|
|
;--- forward reference in a type expression, used as left operand for PTR
|
|
|
|
.386
|
|
.model flat
|
|
|
|
.code
|
|
|
|
mov eax, (type var) ptr [ebx]
|
|
|
|
var dd 0
|
|
|
|
end
|
|
|