Mini-projects

Here I have the projects/stuff that are too small to deserve a page of their own

Boot-sector demo

This is a small graphics demo made to fit on the bootsector of a floppy. (The bootsector is 512 bytes).
You will need nasm to assemble it, and some way to put the output as-is on the bootsector.

Assemble: nasm -fbin -o demo demo.asm
To put on floppy bootsector on Linux: dd if=demo of=/dev/fd0
On windows: Use rawrite or some similar application

Download the assembler code here.