[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 2/3] nubus.h: increase maximum Declaration ROM size from 128k
|
From: |
Mark Cave-Ayland |
|
Subject: |
[PATCH v3 2/3] nubus.h: increase maximum Declaration ROM size from 128k to 1Mb |
|
Date: |
Thu, 11 Jan 2024 10:29:53 +0000 |
Whilst 128k is more than enough for a typical Declaration ROM, a C compiler
configured to produce an unstripped debug binary can generate a ROM image that
exceeds this limit. Increase the maximum size to 1Mb to help make life easier
for developers.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
---
include/hw/nubus/nubus.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/hw/nubus/nubus.h b/include/hw/nubus/nubus.h
index b3b4d2eadb..fee79b71d1 100644
--- a/include/hw/nubus/nubus.h
+++ b/include/hw/nubus/nubus.h
@@ -51,7 +51,7 @@ struct NubusBus {
qemu_irq irqs[NUBUS_IRQS];
};
-#define NUBUS_DECL_ROM_MAX_SIZE (128 * KiB)
+#define NUBUS_DECL_ROM_MAX_SIZE (1 * MiB)
struct NubusDevice {
DeviceState qdev;
--
2.39.2