1

これをnasmでコンパイルし、bochsで実行しています。私の考えでは、2色変数は2行を青で印刷するはずです。実際には、茶色と白が 1 つずつ印刷されます。私はそれを理解することはできません。どんな助けでも大歓迎です

    [BITS 16]   
    [ORG 0x7C00]
    main:

    ;set video mode
    mov ah,0x00     ;function ref
    mov al,0x10     ;param - video mode
    int 0x10

    mov si, TestString
    mov bl,Color        ; Normal text attribute
    call PutStr

    mov si, TestString
    mov bl,Color2       ; Normal text attribute
    call PutStr

    jmp $

    ;-------------------------------- End of running code

    PutStr:
    ; Set up the registers for the interrupt call
    mov ah,0x0E         ; The function to display a chacter (teletype)
    mov bh,0x00         ; Page number

    .nextchar:
    lodsb               ; load string byte from SI into AL and increments SI
    or al,al            ; check for end of string
    jz .endofstring     ; jump to end if null

    int 0x10            ; Run the BIOS video interrupt 
    jmp .nextchar       ; Loop back round to the top

    .endofstring:
    ret


    Color db 0001b
    Color2 db 0001b
    TestString db 'Hello world',13,10,0,0

    times 510-($-$$) db 0       ; Fill the rest of the sector with zero's
    dw 0xAA55           ; Add the boot loader signature to the end
4

2 に答える 2

1

問題は、実際には Color および Color2 識別子の使用にあります。それらが「指す」ものの実際の値を取得するには、それらを「逆参照」する必要があります。

mov bl, [Color]

詳細については、NASM マニュアルの実効アドレスを確認してください。

于 2012-06-29T19:16:13.667 に答える
1

dbメモリのバイトを割り当て、シンボルをそのメモリのアドレスに設定します (したがって、逆参照する必要があります)。

定数値の記号名だけが必要な場合は、次を使用しますequ

Color equ 0001b
...
mov bl, Color
...
于 2012-06-29T20:29:54.443 に答える