This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
dosweep/build.sh
2022-08-09 09:55:23 -04:00

6 lines
176 B
Bash

if [ ! -e disk.img ]; then
dd if=/dev/zero of=disk.img bs=1024 count=2880
mkfs.fat -F12 disk.img
fi
nasm source.asm -o /dev/stdout | mcopy -i disk.img -o - ::/dosweep.com