Upload files to "/"

This commit is contained in:
2025-05-20 20:29:10 -05:00
commit 0de2bf1300
5 changed files with 299 additions and 0 deletions

10
isr128.asm Normal file
View File

@ -0,0 +1,10 @@
[bits 32]
global isr128
extern isr_handler
extern common_isr_stub
isr128:
cli
push dword 0 ; No error code
push dword 128 ; Interrupt number
jmp common_isr_stub