From mutazilah@gmail.com@21:1/5 to All on Fri May 12 12:15:34 2023
Not sure if I've mentioned before, but there's a genuine
public domain partly masm-compatible assembler called
as86. And while masm accepted that previous code, as86
requires this variation that masm also supports.
And now SubC can use Windows functions! :-)
BFN. Paul.
.386p
.model flat
.code
extrn __imp__CreateDirectoryA@8:ptr
public _CreateDirectoryA
_CreateDirectoryA:
push 8[esp]
push 8[esp]
call [__imp__CreateDirectoryA@8]
ret
ret