Skip to content
Snippets Groups Projects
  • Geo Ster's avatar
    c4c3a1ff
    Wrap log funtion into a macro and implement BIOS console · c4c3a1ff
    Geo Ster authored
    * Since log output is getting very large, it's common to have to wait
    5+ minutes before any unknow instruction is encoutered. Printing to the
    console actually takes a lot of time and slows down interpretation
    significantly. Right now we don't care, since we just want to boot the BIOS
    but let's have an option to disable all the log messages if we want.
    
    * In addition record all writes to 0xb000f180 which is the BIOS console
    output address, so we can have some output, which will be very useful
    c4c3a1ff
    History
    Wrap log funtion into a macro and implement BIOS console
    Geo Ster authored
    * Since log output is getting very large, it's common to have to wait
    5+ minutes before any unknow instruction is encoutered. Printing to the
    console actually takes a lot of time and slows down interpretation
    significantly. Right now we don't care, since we just want to boot the BIOS
    but let's have an option to disable all the log messages if we want.
    
    * In addition record all writes to 0xb000f180 which is the BIOS console
    output address, so we can have some output, which will be very useful