Posts by Patrick Marins de Souza • 21 points
3 posts
-
0
votes0
answers23
viewsQ: Error creating keyboard drive in Assembly
I’m creating a keyboard driver but I’m having problems; The idea is that the kernel will load "Keyboard.asm" in memory at 0800h:500h and then I will make a jump to that same address, the first…
-
0
votes0
answers20
viewsQ: Error setting stack by kernel
I always thought I understood about the stack but I realized that no, I’m wanting to understand the stack in practice, so I created this environment The idea is to set the top of the stack at 7FFFh…
-
1
votes1
answer33
viewsQ: Error reading a file and saving it in dynamically allocated space in c
I want to create a program that: Opens the file teste I figured out the size of this file Allocate enough memory space for file + 1 (\0) Read the file contents using the function fread and saved in…