Skip to content

Instantly share code, notes, and snippets.

View LucGoncalez's full-sized avatar
🥲
Faz tanto tempo que não estrava aqui...

Luciano Gonçalez LucGoncalez

🥲
Faz tanto tempo que não estrava aqui...
  • São Paulo, Brasil
View GitHub Profile
@LucGoncalez
LucGoncalez / mouse-stuff.c
Last active January 2, 2018 12:24
Mouse Stuff
/*
* **************************************************
* mouseHandler:
* Handler de mouse.
*
* *Importante:
* Se estamos aqui é porque os dados disponíveis no controlador 8042
* pertencem ao mouse.
* @todo: Essa rotina não pertence ao line discipline.
*
@LucGoncalez
LucGoncalez / boot.asm
Created December 24, 2017 19:50
bootstrap test
bits 16
jmp 0x7c0:_start
hello_world:
db `hello, world!\n\0`
align 4,db 0
_gdt_desc:
dw _gdt_end - _gdt - 1