From da88520bec72b087f5b200140df1beddbb69a78a Mon Sep 17 00:00:00 2001 From: dz Date: Fri, 30 Sep 2016 23:10:35 +0200 Subject: [PATCH] update --- Makefile | 6 +++--- code.asm => tetros.asm | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename code.asm => tetros.asm (100%) diff --git a/Makefile b/Makefile index 0e43456..b10ac62 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ all: mbr.img -mbr.img: code.asm Makefile - nasm -d DEBUG -f bin code.asm -o mbr.img +mbr.img: tetros.asm Makefile + nasm -d DEBUG -f bin tetros.asm -o mbr.img @echo "size is" `stat -c "%s" mbr.img` @if [ `stat -c "%s" mbr.img` -gt 446 ]; then \ bash -c 'echo -e "\e[91mOutput exceeded size of 446 bytes.\e[0m"'; \ rm -f mbr.img; exit 1; fi - nasm -f bin code.asm -o mbr.img + nasm -f bin tetros.asm -o mbr.img run: @qemu-system-i386 -drive file=mbr.img,index=0,media=disk,format=raw diff --git a/code.asm b/tetros.asm similarity index 100% rename from code.asm rename to tetros.asm