mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
18 lines
270 B
Plaintext
18 lines
270 B
Plaintext
|
|
;--- a simple struct member requires a valid expression as init string.
|
|
;--- Note: Masm accepts this, jwasm is intentionally more rigid here.
|
|
|
|
.386
|
|
.model flat, stdcall
|
|
option casemap:none
|
|
|
|
FOO STRUCT
|
|
f1 dword ?
|
|
FOO ENDS
|
|
|
|
.data
|
|
|
|
foo1 FOO <<>>
|
|
|
|
end
|