Roxxik

Results 13 comments of Roxxik

Before removing the current cli from the Kernel the functionality from it must be accessible by system calls and right now i don't see any way from an application to...

Why would we want to put the Kernel up there? All the reasons I Saw for doing so are: 1. 32-bit binaries can use the whole address space - we...

ah ok this sounds reasonable isn't this a issue of th bootloader? especially this part ; Move the trailing binary to its final location mov rsi, 0x8000+6144 ; Memory offset...

Some assumptions from my side: each 2MiB Page has one Byte in the os_MemoryMap structure 0x01 is free 0x02 is used the whole memory is identity mapped (behave like paging...

This will lead to some difficult to track down problems if the OS crashes when you have a flag set while making a syscall, while this behaviour is not documented...

I chose to not include rust inline assembly, because currently it is unstable, undocumented and not conformant to gcc inline assembly. That's why i have included a c layer to...

My idea was that it could be part of a shell Am 10.07.2015 00:13 schrieb "Mason X" [email protected]: > However, I fell like this loader should not be a part...

The loader I'm currently thinking of is just an app which can load(and relocate) another binary into memory and jump to the start of it. Keeping it very basic right...

I think in the long term it would be best to choose what application is started first by the OS (currently hardcoded to the cli) by calling it a certain...

Having profunctors in base would allow lens to use profunctor based lenses which have some advantages see https://github.com/purescript-contrib/purescript-lens/issues/26 Edit: here is a nice discussion of the package lens feature correspondence:...