Compare commits

...

2 Commits

Author SHA1 Message Date
d91ddeea22 timer: add missing declaration
should probably put that in a bios.h file at some point
2025-06-22 07:11:33 -07:00
252467c1be mbv: fix bss init 2025-06-22 07:11:12 -07:00
2 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,7 @@ SECTIONS
{ {
_bss_begin = .; _bss_begin = .;
*(.bss*) *(.bss*)
*(.sbss*)
*(COMMON) *(COMMON)
_bss_end = .; _bss_end = .;
} > RAM } > RAM

View File

@ -5,6 +5,10 @@
#include "pol0.h" #include "pol0.h"
#include "timer.h" #include "timer.h"
extern "C" {
void BiosWozmon();
}
namespace { namespace {
struct Gpio { struct Gpio {