I'm trying to learn assembly language and made some simple steps so far. I can display characters on the screen using their ascii-id, but now I want to store the ids of specific characters into a variable and print them. Unfortunately this does not work :) My code only displays a space on the screen. Thank you for each kind of help!
[BITS 16]
[ORG 0x7C00]
; MOV AL, 48 (works)
MOV AL, [false]
CALL PrintCharacter
JMP $
PrintCharacter:
MOV AH, 0x0E
MOV BH, 0x00
MOV BL, 0x07
INT 0x10
RET
false db 48
true db 49
TIMES 510 - ($ - $$) db 0
DW 0xAA55