2 ; nasm -f bin -o bootcard.img bootcard.asm
3 ; cat bootcard.img >/dev/<usbstick>
13 data_end equ muscur + 4
22 PIT_CMD_SQWAVE equ 06h
25 %define DIV_ROUND(a, b) ((a) / (b) + ((a) % (b)) / ((b) / 2))
45 mov al, (PIT_CMD_CHAN0 + (%1 << 6)) | PIT_CMD_HILO | PIT_CMD_SQWAVE
48 out PIT_DATA0 + %1, al
50 out PIT_DATA0 + %1, al
60 mov cx, (data_end - data_start) / 2
63 mov word [32], timer_intr
66 settimer 0, DIV_ROUND(OSC_FREQ, 200)
114 mov cx, 3680 ; 20 lines
123 .mnt: mov [bp - 2], cx
160 .pmus: mov bx, [muscur]
162 mov cx, [music + bx] ; event time
169 mov ax, [music + 2 + bx] ; event counter reload
191 str1: db 'message message blah',0
192 str2: db 'Michael & Athena',0
201 %define TM(x) (40 + (x) * 4)
236 times 446-($-$$) db 0
244 times 510-($-$$) db 0
247 ; vi:ft=nasm ts=8 sts=8 sw=8: