summaryrefslogtreecommitdiff
path: root/asm/pic.asm
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-02 00:08:42 +0200
committerMiguel <m.i@gmx.at>2018-09-02 00:08:42 +0200
commit8e3411139b27a3421e9ac75c13f14f99f6dd3137 (patch)
treecf8b53ab02863117c310bde11ee4683e134cf1b2 /asm/pic.asm
parent0fff2e6dc6fae82da1c7978918a490c25cc36f04 (diff)
syscalls
Diffstat (limited to 'asm/pic.asm')
-rw-r--r--asm/pic.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/pic.asm b/asm/pic.asm
index 28b484c..901f854 100644
--- a/asm/pic.asm
+++ b/asm/pic.asm
@@ -4,7 +4,7 @@
[bits 32]
-global pic_setup
+global asm_pic_setup
%define ICW_1 0x11 ; 00010001 binary. Enables initialization mode and we are sending ICW 4
@@ -17,7 +17,7 @@ global pic_setup
%define IRQ_0 0x20 ; IRQs 0-7 mapped to use interrupts 0x20-0x27
%define IRQ_8 0x28 ; IRQs 8-15 mapped to use interrupts 0x28-0x36
-pic_setup:
+asm_pic_setup:
; Send ICW 1 - Begin initialization -------------------------