私は、文字列の最初の文字を印刷することになっています。このコードを持っている: mov bx, message ; Move the address of the message to bx
add bx, 0x7c00 ; Adding the padding of bootsector to bx
mov al, [bx] ; Move the value at the addres
nasm x86アセンブラで[]を使用してアドレスを操作する方法を理解したいと思います。 MY_TABLE TIMES 10 DW 0 ; Allocates 10 words (2 bytes) each initialized to 0
MOV EBX, [MY_TABLE] ; Effective Address of MY_TABLE in EBX
MOV [EBX], 110