mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
20 lines
201 B
NASM
20 lines
201 B
NASM
|
|
.386
|
|
.model flat, stdcall
|
|
option casemap:none
|
|
|
|
FOO struct
|
|
m1 DWORD ?
|
|
m2 DWORD ?
|
|
FOO ends
|
|
|
|
.data
|
|
|
|
s FOO <>
|
|
|
|
dw opattr s.foo
|
|
dw opattr FOO.foo
|
|
dw opattr [eax].FOO.foo
|
|
|
|
END
|