mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
18 lines
162 B
NASM
18 lines
162 B
NASM
|
|
;--- OPATTR with undefined struct member
|
|
|
|
.386
|
|
|
|
S1 struct
|
|
f1 db ?
|
|
S1 ends
|
|
|
|
_DATA segment
|
|
|
|
dw opattr S1.f1
|
|
dw opattr S1.f2
|
|
|
|
_DATA ends
|
|
|
|
end
|