HelloAssembly: The smallest possible complete Windows application (2021)
1–10 of 53 posts
Re: HelloAssembly: The smallest possible complete Windows application (2021)
#2Re: HelloAssembly: The smallest possible complete Windows application (2021)
#3Re: HelloAssembly: The smallest possible complete Windows application (2021)
#4I should try FASM to see if it produces a smaller size exe. COM files are small, but 16-bit DOS was the thing back in the day - 100H yeah and basically a memory dump.
... the days! :)
Re: HelloAssembly: The smallest possible complete Windows application (2021)
#5Re: HelloAssembly: The smallest possible complete Windows application (2021)
#6Re: HelloAssembly: The smallest possible complete Windows application (2021)
#7For more of the same (though I wish source was available) which actually does something useful, see the various small utilities at https://www.grc.com/freepopular.htm
Re: HelloAssembly: The smallest possible complete Windows application (2021)
#8[flagged]
Re: HelloAssembly: The smallest possible complete Windows application (2021)
#9love this and it's timely as I think with AI more of my code will just be native assembly for example: https://github.com/taf2/tic-tac-toe my m series native assembly based tic tac toe windowed game... very portable too you just simply execute codex --yolo port my app to x y z host...
Re: HelloAssembly: The smallest possible complete Windows application (2021)
#10It's a bit like 'smallest hello world in assembly' but the code is just setting up the calling convention and then passing the zero-terminated character string into `write`. Cool, but that could be done a bit more straightforwardly in C, too. A lot of assembly (including in the linked repository) is book-keeping for the platform's calling convention.