aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-10-22 20:16:42 +0200
committerHelge Deller <deller@gmx.de>2023-10-31 08:26:22 +0100
commit1f49c02920ddd61ce64b50975e51aa62703b2c23 (patch)
tree4e0f349b7d737569a1d613d949ad5742998bf257
parenta5864658bfe6b2a6b91b2b4b79dd497a9ff94d00 (diff)
downloadseabios-hppa-1f49c02920ddd61ce64b50975e51aa62703b2c23.zip
seabios-hppa-1f49c02920ddd61ce64b50975e51aa62703b2c23.tar.gz
seabios-hppa-1f49c02920ddd61ce64b50975e51aa62703b2c23.tar.bz2
parisc: Support a 32-bit PDC only for now.
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/parisc/parisc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c
index 6ec168f..fbc6675 100644
--- a/src/parisc/parisc.c
+++ b/src/parisc/parisc.c
@@ -1365,8 +1365,8 @@ static int pdc_model(unsigned int *arg)
result[0] = machine_B160L.pdc_cpuid;
return PDC_OK;
case PDC_MODEL_CAPABILITIES:
- result[0] = current_machine->pdc_caps;
- result[0] |= PDC_MODEL_OS32; /* we do support 32-bit */
+ // result[0] = current_machine->pdc_caps;
+ result[0] = PDC_MODEL_OS32; /* we only support 32-bit PDC for now. */
if (0 && cpu_bit_width == 64) /* and maybe 64-bit */
result[0] |= PDC_MODEL_OS64; /* this means 64-bit PDC calls are supported */
else