Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3405037
  • 博文数量: 754
  • 博客积分: 10132
  • 博客等级: 上将
  • 技术积分: 7780
  • 用 户 组: 普通用户
  • 注册时间: 2008-01-14 23:36
文章分类

全部博文(754)

文章存档

2012年(3)

2011年(39)

2010年(66)

2009年(167)

2008年(479)

我的朋友

分类: LINUX

2008-09-03 17:18:07

;Display register BX value.
displaybx:
 push ax
 push cx
 mov cx,0x4
displaybx_loop:
 mov ax,bx
 and ax,0xf000
 shr ax,12
 cmp ax,10
 jge displaybx_a_f ;Greater or equal
 ;0_9
 add ax,0x30
 jmp displaybx_next
displaybx_a_f: 
 ;A_F
 add ax,0x37
displaybx_next: 
 or ax,0x0e00
 ;mov ax,0x0e30
 int 0x10
 sal bx,4
 loopnz displaybx_loop
 pop cx
 pop ax
 ret
阅读(857) | 评论(0) | 转发(0) |
0

上一篇:《秋影》

下一篇:HTTP协议

给主人留下些什么吧!~~