All pastes #2090184 Raw Edit

Anonymous

public text v1 · immutable
#2090184 ·published 2011-10-15 01:18 UTC
rendered paste body
KrnSystemTickIsr:
	cli
	push eax
	
	in al, 20h ;;spurious ISR check
	test al, 80h
	jz .isspurious
	
		inc dword [systemtick]
		;;;;;;insert code here
	
	.isspurious:
	
	mov al, 20h    ;;;;nonspecific EOI (specific = 60h!)
	out 20h, al    ;;;;send to the slave too for the other isrs > 7!
	
	pop eax	
	sti
	iret