mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
7515 lines
75 KiB
Text
7515 lines
75 KiB
Text
// We need to make sure Int3 can never run more than one instance at a time.
|
|
// We are not threaded yet, when we are we have to change stuff to thread vars and a lot of other stuff.
|
|
// Two Int3 calls currently can never happen at the same time normally, but IRQs can happen while the DebugStub is
|
|
// running. We also need to make sure IRQs are allowed to run during DebugStub as DebugStub can wait for
|
|
// a long time on commands.
|
|
// So we need to disable interrupts immediately and set a flag, then reenable interrupts if they were enabled
|
|
// when we disabled them. Later this can be replaced by some kind of critical section / lock around this code.
|
|
// Currently IRQs are disabled - we need to fix DS before we can reenable them and add support for critical sections / locks here.
|
|
// -http://www.codemaestro.com/reviews/8
|
|
// -http://en.wikipedia.org/wiki/Spinlock - Uses a register which is a problem for us
|
|
// -http://wiki.osdev.org/Spinlock
|
|
// -Looks good and also allows testing intead of waiting
|
|
// -Wont require us to disable / enable IRQs
|
|
|
|
//This method also handles INT1
|
|
|
|
namespace DebugStub
|
|
|
|
Interrupt TracerEntry {
|
|
// This code is temporarily disabled as IRQs are not enabled right now.
|
|
// LockOrExit
|
|
|
|
+All
|
|
// Save current ESP so we can look at the results of PushAll later
|
|
.PushAllPtr = ESP
|
|
.CallerEBP = EBP
|
|
|
|
// Get current ESP and add 32. This will skip over the PushAll and point
|
|
// us at the call data from Int3.
|
|
EBP = ESP
|
|
EBP + 32
|
|
// Caller EIP
|
|
EAX = EBP[0]
|
|
|
|
// 12 bytes for EFLAGS, CS, EIP
|
|
EBP + 12
|
|
.CallerESP = EBP
|
|
|
|
// EIP is pointer to op after our call. Int3 is 1 byte so we subtract 1.
|
|
// Note - when we used call it was 5 (size of our call + address)
|
|
// so we get the EIP as IL2CPU records it. Its also useful for when we
|
|
// wil be changing ops that call this stub.
|
|
|
|
//Check whether this call is result of (i.e. after) INT1. If so, don't subtract 1!
|
|
EBX = EAX
|
|
! MOV EAX, DR6
|
|
EAX & $4000
|
|
if EAX != $4000 {
|
|
EBX--
|
|
}
|
|
EAX = EBX
|
|
|
|
// Store it for later use.
|
|
.CallerEIP = EAX
|
|
|
|
Executing()
|
|
|
|
-All
|
|
|
|
// Temp disabled, see comment on LockOrExit above
|
|
// Unlock
|
|
}
|
|
|
|
|
|
// generated stuf:
|
|
Interrupt Interrupt_0 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_2 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_4 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_5 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_6 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_7 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_8 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_9 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_10 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_11 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_12 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_13 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_14 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_15 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_16 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_17 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_18 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_19 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_20 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_21 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_22 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_23 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_24 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_25 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_26 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_27 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_28 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_29 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_30 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_31 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_32 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_33 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_34 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_35 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_36 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_37 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_38 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_39 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_40 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_41 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_42 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_43 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_44 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_45 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_46 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_47 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_48 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_49 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_50 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_51 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_52 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_53 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_54 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_55 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_56 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_57 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_58 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_59 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_60 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_61 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_62 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_63 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_64 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_65 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_66 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_67 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_68 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_69 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_70 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_71 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_72 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_73 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_74 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_75 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_76 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_77 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_78 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_79 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_80 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_81 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_82 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_83 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_84 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_85 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_86 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_87 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_88 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_89 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_90 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_91 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_92 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_93 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_94 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_95 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_96 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_97 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_98 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_99 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_100 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_101 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_102 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_103 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_104 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_105 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_106 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_107 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_108 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_109 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_110 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_111 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_112 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_113 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_114 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_115 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_116 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_117 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_118 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_119 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_120 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_121 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_122 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_123 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_124 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_125 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_126 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_127 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_128 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_129 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_130 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_131 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_132 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_133 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_134 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_135 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_136 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_137 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_138 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_139 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_140 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_141 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_142 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_143 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_144 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_145 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_146 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_147 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_148 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_149 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_150 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_151 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_152 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_153 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_154 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_155 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_156 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_157 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_158 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_159 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_160 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_161 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_162 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_163 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_164 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_165 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_166 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_167 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_168 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_169 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_170 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_171 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_172 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_173 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_174 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_175 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_176 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_177 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_178 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_179 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_180 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_181 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_182 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_183 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_184 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_185 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_186 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_187 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_188 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_189 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_190 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_191 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_192 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_193 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_194 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_195 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_196 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_197 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_198 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_199 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_200 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_201 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_202 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_203 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_204 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_205 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_206 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_207 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_208 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_209 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_210 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_211 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_212 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_213 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_214 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_215 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_216 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_217 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_218 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_219 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_220 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_221 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_222 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_223 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_224 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_225 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_226 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_227 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_228 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_229 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_230 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_231 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_232 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_233 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_234 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_235 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_236 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_237 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_238 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_239 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_240 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_241 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_242 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_243 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_244 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_245 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_246 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 6
|
|
eax = 54
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_247 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 7
|
|
eax = 55
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_248 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 8
|
|
eax = 56
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_249 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
// 9
|
|
eax = 57
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_250 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 0
|
|
eax = 48
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_251 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 1
|
|
eax = 49
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_252 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_253 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 3
|
|
eax = 51
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_254 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 4
|
|
eax = 52
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|
|
Interrupt Interrupt_255 {
|
|
+All
|
|
// I
|
|
eax = 73
|
|
|
|
ComWriteAL()
|
|
// n
|
|
eax = 110
|
|
|
|
ComWriteAL()
|
|
// t
|
|
eax = 116
|
|
|
|
ComWriteAL()
|
|
// 2
|
|
eax = 50
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
// 5
|
|
eax = 53
|
|
|
|
ComWriteAL()
|
|
StartLoop:
|
|
!hlt
|
|
goto StartLoop
|
|
}
|
|
|