-
How can I make my application boot with my own application instead of the monitor shell? Let's say I want that when I type Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There are two ways to do this:
Option 2 would be ideal since option one only gives you ~12KiB of space to use at the moment. |
Beta Was this translation helpful? Give feedback.
There are two ways to do this:
Replace
BareMetal-Monitor
. This is ideal for small programs. The kernel will take whatever is after it, copy it to0x1E0000
in memory, and execute it. Instructions for this are in theBareMetal-OS
README file:Modify
BareMetal-Monitor
. This would be for programs that are stored on the disk. The code inBareMetal-Monitor
would need to be updated to only load a program from disk to0xFFFF800000000000
and execute it.Option 2 would be ideal since option one only gives you ~12KiB of space to use at the moment.