From 81f4a7524f538796dce76fb3a498af35e6be6233 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Tue, 21 Jun 2022 01:48:14 +0300 Subject: [PATCH] foo --- Makefile | 4 ++++ bootcard.asm | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index e07be2c..ddc89c5 100644 --- a/Makefile +++ b/Makefile @@ -20,3 +20,7 @@ debug: $(bin) .PHONY: disasm disasm: $(bin) ndisasm -o 0x7c00 $< >dis + +.PHONY: qr +qr: bootcard.asm + qrencode -o qr.png -r bootcard.asm diff --git a/bootcard.asm b/bootcard.asm index 63a6ada..9f70b59 100644 --- a/bootcard.asm +++ b/bootcard.asm @@ -196,12 +196,12 @@ timer_intr: str1: db 'message message blah',0 str2: db 'Michael & Athena',0 -G2 equ 24351/2 -C3 equ 18243/2 -D3 equ 16252/2 -B2 equ 19328/2 -F3 equ 13666/2 -E3 equ 14479/2 +G2 equ 12175 +C3 equ 9121 +D3 equ 8126 +B2 equ 9664 +F3 equ 6833 +E3 equ 7239 %define TM(x) (40 + (x) * 4) -- 1.7.10.4