Algorithm X
Algorithm X
try this : https://stackoverflow.com/questions/6622490/ipython-no-readline-available-and-pip-install-readline-error
future is a python library, install with: pip3 install future
Also try to run "sudo pip3 install future" , if you run python3 rsf.py as root Also, could you provide some more info about the problem ( like what OS,...
You can emulate a linux terminal using cygwin on windows Through cygwin you can install all the tools you need to compile your os Give it a try https://www.cygwin.com/ Or...
When the BIOS loads the kernel, it olny knows about the stack, pointers, and ASCII. In order to print UTF-8 characters, you will need to code a 32-bit VGA driver...
1. why dont you use `pop al`? 2. what is your question?
I don't understand why `mov al, [0x7ffe]` wouldn't work in the first place, so it makes sense that you can print `A A B`
ok so what is your question again?
have you tried to write to vga as a short eg `short *VGAMEMORY =(short *) 0xb8000;` `VGAMEMORY[0] = 0x0d42; // B` `VGAMEMORY[1] = 0x0a43; // C`
@Paolo309 in your example if you use any register (rax, rbx, rcx, etc.), you will get the same result (A and B on the screen). Also, try to `push` the...