flat assembler
Message board for the users of flat assembler.

Index > Windows > Fasm Windows for Dummies

Author
Thread Post new topic Reply to topic
Crinan



Joined: 05 Dec 2006
Posts: 28
Location: New Zealand
Crinan 20 Apr 2007, 05:28
I am experienced in 16-bit assembler and high-level Windows programming, but was a dummy when it came to 32-bit Fasm and Win32 API. So I decided to develop a set of macros to handle the basic Windows functions and so let me get on with programming proper.
These macros cater for the usual Windows controls, bitmap images and timers, as well as File IO, parameter access, date handling, and numeric editing.
There may be other newcomers who might find this useful and, if you want to go further, these macros could be used as stepping stones.
For experienced Fasm users, these are probably of no great interest. The macros and routines come with three examples and a file of macro descriptions in a zip file of about 32kb. The following program is an example of how it looks in practice. It is the equivalent of the Fasm Minipad example.

include '\Fasm\Include\win32ax.inc'
include '\Fasm\Include\macro\masm.inc'
include '\Fsm\Genmacros.inc'
include '\Fsm\Winmacros.inc'
.data
Gendata
Windata 3,1
Abouttext db 'This is Win32 example program created with flat assembler.',0
.code
start:
Crefont Editfont,'Courier New',16
Crewindow 'Tinypad',144,128,256,256
Crecontrol EDITBOX,Editref,,' ',2,22,246,202,Editfont
Crecontrol BUTTON,Newref,Newproc,'New',10,2,60,18
Crecontrol BUTTON,Helpref,Helpproc,'Help',80,2,60,18
Runwindow
Closewindow
invoke ExitProcess,Exitcode
Newproc:
Set Editref,TEXT,''
ret
Helpproc:
Message 'About MiniPad',Abouttext,0
ret
include '\Fsm\Routines.inc'
.end start


Description:
Download
Filename: Dummy.zip
Filesize: 31.48 KB
Downloaded: 418 Time(s)

Post 20 Apr 2007, 05:28
View user's profile Send private message Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  


< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.