- 1: It loads the IDT at 0x10000FF
2: It remaps the PIC to 0x20-0x27
3: Enables interrupts

Love4Boobies wrote:Your code base is a mess. You include .c files left and right, your headers have no include guards, you don't use abstractions, most of it is copied verbatim from the tutorials on the wiki, you use inconsistent styles (especially for the things you copied over), your build script makes no sense, and the code code is of very low quality. People on this forum have been recommending that you take the time to learn C. You may think you are making progress but you aren't and will get stuck very soon. I really recommend you follow their advice and then get back to your project.
beacuse my git doesn't show you how to connect to your repo after the first time. and now i have to use the web interface.Roman wrote:Why do you upload files via GitHub's web interface instead of uploading them by syncing your git repo?
You can use actual build systems (makefile-based or not) in Windows as well. Even if your project is small enough that you don't care about rebuilding modules that haven't changed since the last build, why does your batch script do both building and emulation? I won't even get into implementation issues like the path hack.NunoLava1998 wrote:It's for Windows, and assumes qemu is in your path. It's not a .sh or a makefile.
Here's a good (free) introduction to version control. It covers several tools, including git, for some of the more common tasks. More advanced topics like submodules, resetting, rebasing, etc. are not covered but it's still a good starting point.NunoLava1998 wrote:beacuse my git doesn't show you how to connect to your repo after the first time. and now i have to use the web interface.Roman wrote:Why do you upload files via GitHub's web interface instead of uploading them by syncing your git repo?
My point wasn't that you did a bad job and should try harder. My point was that you would do a better job effortlessly if just you took the time to find out the things you don't know: a few things about upstream prerequisites, design patterns, and the tools you're using and you'd be ready to actually work on your projects.NunoLava1998 wrote:I'm working on a new version (i realized the loading IDT thing is not even valid, sorry, also adding more features, obviously.).
I'm especially a fan of this comment in defs.hLove4Boobies wrote:most of it is copied verbatim from the tutorials on the wiki
Code: Select all
/* Surely you will remove the processor conditionals and this comment
appropriately depending on whether or not you use C++. */
I never watched that movie.alexfru wrote:I just watched "The Giver" the other day. I think you got their use of the word release correctly.
Code: Select all
/* This tutorial will only work for the 32-bit ix86 targets. */