下面的代码示例将在屏幕上显示寄存器al中的值:EF
mov ax,0x0000 mov ss,ax mov sp,0x0 mov ax,0xb800 ;设置显存段地址,如果不设置,直接写[五位数地址],会越界的 mov ds,ax mov al,0xEF call get_high_4_bit ;将AL中的高4位取出来放到bl的低4位 cmp bl,1010B ;判断bl低4位是0-9还是A-F jb show_number1 ;如果是0-9则显示数字,A-F则显示字母 add bl,55D ;显示字母,则内存中数字需要+55 jmp show_high_end1 show_number1: ;显示数字,则内存中数字需要+48 add bl,48D show_high_end1: mov byte [si],bl ;显示字母或数字 inc si mov byte [si],0x0b inc si call get_low_4_bit ;显示低4位内容 jb show_number2 ;如果是0-9则显示数字,A-F则显示字母 add bl,55D ;显示字母,则内存中数字需要+55 jmp show_high_end2 show_number2: ;显示数字,则内存中数字需要+48 add bl,48D show_high_end2: mov byte [si],bl ;显示字母或数字 inc si mov byte [si],0x0b inc si the_end: jmp the_end get_high_4_bit: ;将AL中的高4位取出来放到bl的低4位 mov bl,al and bl,11110000B shr bl,4 ret get_low_4_bit: ;将AL中的低4位取出来放到bl的低4位 mov bl,al and bl,1111B ret times 510-($-$$) db 0 dw 0Xaa55