mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
24 lines
362 B
Plaintext
24 lines
362 B
Plaintext
|
|
;--- test external with PROTO qualified type
|
|
;--- gives assembly errors
|
|
|
|
.386
|
|
.model flat, stdcall
|
|
|
|
externdef p1: proto :dword, :dword
|
|
externdef p2: proto :dword, :dword
|
|
extern p3: proto :dword, :dword
|
|
extern p4: proto :dword, :dword
|
|
|
|
.code
|
|
|
|
p1 proc a1:dword, a2:dword
|
|
ret
|
|
p1 endp
|
|
|
|
p3 proc a1:dword, a2:dword
|
|
ret
|
|
p3 endp
|
|
|
|
end
|