This repository has been archived on 2024-10-03. You can view files and clone it, but cannot push or open issues or pull requests.
PlutOS-Archive/Makefile
2024-09-28 22:16:46 +02:00

9 lines
No EOL
110 B
Makefile

all: build
build:
nasm main.asm -f bin -o main.img
run:
qemu-system-i386 -fda main.img
debug: build run