diff --git a/day_02/Makefile b/day_02/Makefile new file mode 100644 index 0000000..e5ab59f --- /dev/null +++ b/day_02/Makefile @@ -0,0 +1,14 @@ +# Makefile to run a.img in QEMU + +# QEMU command to run x86_64 architecture +QEMU = qemu-system-x86_64 + +# Name of the disk image +IMAGE = helloos.img + +# Default target +all: run + +# Target to run the image in QEMU +run: + $(QEMU) -drive format=raw,file=$(IMAGE) diff --git a/day_02/helloos.img b/day_02/helloos.img new file mode 100644 index 0000000..cdf0659 Binary files /dev/null and b/day_02/helloos.img differ