csb4.s

来自「minux的源代码,一个非常小的操作系统」· S 代码 · 共 34 行

S
34
字号
.sect .text; .sect .rom; .sect .data; .sect .bss
.define .csb4

.sect .text
.csb4:
				!bx: descriptor address
				!ax, dx:  index
	push	(bx)		! default
	mov	cx,2(bx)	! count (ignore high order word, the descriptor
				! would not fit anyway)
1:
	add	bx,#6
	dec     cx
	jl      4f
	cmp     ax,(bx)
	jne     1b
	cmp	dx,2(bx)
	jne     1b
	pop	bx
	mov	bx,4(bx)
2:
	test    bx,bx
	jnz     3f
ECASE = 20
.extern .fat
	mov     ax,#ECASE
	push    ax
	jmp     .fat
3:
	jmp	(bx)
4:
	pop	bx
	jmp	2b

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?