0
I Use This!
Inactive

Commits : Listings

Analyzed about 18 hours ago. based on code collected 1 day ago.
May 14, 2023 — May 14, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Finally added my physical memory manager. Not very useful yet. More... about 14 years ago
Merge branch 'master' into covers-and-statics More... about 14 years ago
Using UInt32 instead of ULong in the Multiboot structures. More... about 14 years ago
Merge branch 'master' into covers-and-statics More... about 14 years ago
Fixed a bug in Printf that caused flags to not work. More... about 14 years ago
Now printing memory map from grub. (And stopped printing the 'Initializing' messages because oos doesn't scroll yet.) More... about 14 years ago
Oops, this shouldn't use namespaced imports anymore. More... about 14 years ago
Put the color constants in a class, more like an enum. More... about 14 years ago
Moving exceptionMessages outside of the ISR class seems to make everything work. More... about 14 years ago
Re-adding Class alloc() and the other functions on Class/Object I had left out. More... about 14 years ago
Working around a j/ooc bug. More... about 14 years ago
Renaming, and a missing static. More... about 14 years ago
Renaming my init() functions to setup() More... about 14 years ago
Using class instead of cover. More... about 14 years ago
Merge branch 'master' into covers-and-statics More... about 14 years ago
It makes more sense to use UInt8* here, not Char*. This doesn't change how it works at all. More... about 14 years ago
Don't need to put the class as an argument to memset, it can figure it out from the argument 'val'. More... about 14 years ago
Merge branch 'master' into covers-and-statics More... about 14 years ago
Converted a for(;;) loop to use while() More... about 14 years ago
Merge branch 'master' into covers-and-statics More... about 14 years ago
A nicer way to specify flag enums. More... about 14 years ago
Changed 2 spaces -> 4 spaces and changed some coding style stuff. More... about 14 years ago
Small renaming fix. More... about 14 years ago
Fixed a typo. More... about 14 years ago
Moved colours outside of Display. More... about 14 years ago
Updated Main.ooc to use GDT init(), Display setForeground(), etc. More... about 14 years ago
Changed almost everything to use covers filled with static members. eg. 'Display init()' instead of 'initDisplay()'. This will not work until I use 'This' everywhere, or if j/ooc relaxes on unqualified static member access. More... about 14 years ago
Removed unused printDec/printHex. Just use "0x%x" format(num) println() or similar. More... about 14 years ago
Added memcpy and memset<T>. zeroMemory uses memset<UInt8>. This is the first use of generics in oos. =) More... about 14 years ago
Added a memory manager that just allocates off the end of the kernel. String format() and printf() now use gc_malloc. free doesn't do anything *yet*. I think I fixed all the bugs related to format/printf. More... about 14 years ago