diff options
author | Helge Deller <deller@gmx.de> | 2024-02-02 17:42:07 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-02-02 17:42:07 +0100 |
commit | 79cba61e851cf91f4775bde225587a725457685d (patch) | |
tree | 4ed94593b3d1e592931b9ebce836637c5a0e5e01 | |
parent | 5bd8ff5a93af56017a6e60a48db4efe7d1c638a4 (diff) | |
download | seabios-hppa-79cba61e851cf91f4775bde225587a725457685d.zip seabios-hppa-79cba61e851cf91f4775bde225587a725457685d.tar.gz seabios-hppa-79cba61e851cf91f4775bde225587a725457685d.tar.bz2 |
parisc: Use new qemu debug output function for early bootup
Use the qemu diag(0x101) call to output at early bootup.
This allows to show HPMCs at bootup.
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | src/parisc/parisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c index 6c8899d..bd7ae79 100644 --- a/src/parisc/parisc.c +++ b/src/parisc/parisc.c @@ -1044,7 +1044,7 @@ static void parisc_serial_out(char c) /* might not be initialized if problems happen during early bootup */ if (!addr) { /* use debugoutput instead */ - dprintf(0, "%c", c); + builtin_console_out(c); return; } if (0) { |