fanoI
fanoI
To avoid to have a slow time (1.5 seconds) in my case to get the Serializer is possible to compile them?
Actually IL2CPU is opening the file and creating an hexdup of it and then uses the X# instruction 'db' to include it in the assembler file, sadly this does work...
When there is the need to access a field of a class you have to add a ref variable to one of its plug method and use the attribute "FieldAccess"...
Permit to debug a kernel using VirtualBox similarly as how is done with VmWare and Bochs.
# List of Console not implemented methods In the following issue there is a list of the properties methods not implemented for the Console class. ## Properties or Methods regarding...
The method DrawPoint() in VBEScreen actually throws if the mode is set differently from 32, but the Bochs VGA driver support the other Color Depths. Look here as a starting...
This a list of my ideas of what is yet needed to complete CGS: - [x] CGS should work in VmWare too - [ ] Add to the Bochs driver...
Using the "usual" sample code: ```cs struct DoubleView { enum BitFields { Fraction = 11, Exponent = 52, Sign = 1, } } ``` In the light bulb is only...
To make BitX more as number Value should not be public but private / internal, any conversion should happen with cast operations.
This works correctly: ```cs Bit3 b3 = 99; ``` I got the expected error: "Constant value '99' cannot be converted to a 'Bit3'" but this passes: ```cs Bit3 b3 =...