Added PS/2 mouse driver

This commit is contained in:
Alex
2023-03-02 02:19:42 +02:00
parent a274109924
commit 1103154619
4 changed files with 415 additions and 0 deletions

40
Input/PS2Mouse/linker.ld Normal file
View File

@ -0,0 +1,40 @@
OUTPUT_FORMAT(binary)
OUTPUT_ARCH(i386:x86-64)
ENTRY(DriverEntry)
SECTIONS
{
.header :
{
*(.header .header.*)
*(.extended .extended.*)
}
.text :
{
*(.text .text.*)
}
.data :
{
*(.data .data.*)
}
.rodata :
{
*(.rodata .rodata.*)
}
.bss :
{
*(COMMON)
*(.bss .bss.*)
}
/DISCARD/ :
{
*(.eh_frame)
*(.note .note.*)
}
}