|
EdPad
| |
|
This was my major project for Win32 assembly. I basically cloned notepad. It's not very impressive, especially compared to Hutch's GUN (see Hutch's Masm32 site), also written in assembly, as EdPad neither prints nor searches. The only thing that is different between my win32asm creations and standard win32asm stuff is that most windows assembly is in high-level assembly (invoke, push multiple, local, etc), and mine's all low-level, so I handle the stack manually. So even though EdPad is not too powerful as a word processor, it's worth looking at.
|
|
Christmas Clock
|
|
This is kinda cool. This counts down time in D/H/M/S to Christmas. It is only active in December (leap years, etc. make yearlong counting messy). In retrospect, my decision that Christmas started at 7:00 AM since that's when you'll be waking up (on a good day if you have three younger brothers) was probably not the best, and I should have made it start at midnight. I may eventually change that. This program is available on simtel.net.
|
|
Win32asm Demo
|
|
Simple window with a background graphic and a menu. If you're interested in windows assembly, take a look at this.
|
|
Windows Command-Prompt Program
|
|
This calls some int 2fh windows commands from a DOS window. It fools with the clipboard and changes the titlebar of its window.
|