Download Pelles C here: http://www.smorgasbordet.com/pellesc/
.386
.model flat,stdcall
option casemap:none
COMM CommVar:DWORD
END
.386
.model flat,stdcall
option casemap:none
includelib \PellesC\Lib\Win\kernel32.lib
includelib \PellesC\Lib\Win\user32.lib
includelib msvcrt.lib
EXTERN CommVar:DWORD
printf PROTO C :DWORD,:VARARG
ExitProcess PROTO :DWORD
.data
msg db 'COMM variable = %u',0
.code
start:
mov CommVar,256
invoke printf,ADDR msg,CommVar
invoke ExitProcess,0
END start
Quote from: John Z on May 24, 2025, 02:26:24 PMWhat screen resolution are you using. 1920 x 1080 they look fine.
Page created in 0.022 seconds with 13 queries.