davidcallanan / os-series

820 stars 120 forks source link

Makefile not working (episode 1) #60

Open Axalz opened 2 years ago

Axalz commented 2 years ago

When I run make build-x86_64, I get this:

mkdir -p build/x86_64/boot/ && \ nasm -f elf64 src/impl/x86_64/boot/header.asm -o build/x86_64/boot/header.o src/impl/x86_64/boot/header.asm:9: error: comma expected after operand 1 Makefile:5: recipe for target 'build/x86_64/boot/header.o' failed make: *** [build/x86_64/boot/header.o] Error 1

f1nn1711 commented 2 years ago

same issue

davidcallanan commented 2 years ago

I think this is an error in your assembly code, have you checked to make sure the code in your assembly files match what I have in this repo?