aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
AgeCommit message (Collapse)Author
2020-08-06Fixed messed up registersMarvin Borner
2020-08-05Added some cpu function wrappersMarvin Borner
2020-08-05Some proc thingsMarvin Borner
2020-08-01Added syscallsMarvin Borner
2020-08-01Some entry position optimizationsMarvin Borner
2020-07-29Forget what I said, this was an easy fixMarvin Borner
Making the asm instructions volatile seems to fix every issue
2020-07-29Switched to -Os flag and fixed issues with itMarvin Borner
Somehow the insl function gets optimized to one instruction so I need a gcc attribute to exclude this function from optimization. I may fix this in the future though. Anyways, the kernel is waay smaller now! :)
2020-07-28Yay, timer works.Marvin Borner
This confirms my assumption that the errors are the bootloaders fault by not supporting indirect pointers.
2020-07-26Added cpu timerMarvin Borner
Well, it doesn't work *at all*. When I include these files with the Makefile everything crashes. I *think* this is due to the fact that the bootloader only handles direct ext2 pointer and the kernel is too big to fit into them. Therefore the kernel taps into the void as it tries to read some data an crashes. It could be something completely different though - let's see! (this will take some time ig)
2020-07-26Added simple keyboard input.Marvin Borner
This is somewhat of a demo. The real gui will be implemented completely different (ig)
2020-07-25Added very basic PSF parserMarvin Borner
Version 1 works; Version 2 not so much
2020-07-24Bug hunting for file reading (ext2 idp recursion)Marvin Borner
2020-07-23Added *very* simple ide and ext2 supportMarvin Borner
2020-07-23Some functions for stdlibMarvin Borner
2020-07-23Well, I need ASM ig.Marvin Borner
I've tried to do interrupts without ASM but it doesn't seem to work.
2020-07-22Initial keyboard implementationMarvin Borner
2020-07-22Added interruptsMarvin Borner
2020-07-22Added basic malloc (WARNING: DUMB!) :)Marvin Borner
2020-07-22Imported some things from masterMarvin Borner
2020-07-22Switched to Makefile.Marvin Borner
Kinda for the sake of minimalism