summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-06-05 01:24:16 -0400
committerNathan Binkert <binkertn@umich.edu>2005-06-05 01:24:16 -0400
commit8f1348a21d8d4509716525048d3bd8922072592a (patch)
treee45bae70f7462416d7b0ca79fc76dc8bf157ce3f /python
parent4f654fed0ed144fd6cbe9699f694926cf655479e (diff)
parent5657c1dbecd8224b8bed45319e1624d58bcfefbb (diff)
downloadgem5-8f1348a21d8d4509716525048d3bd8922072592a.tar.xz
Merge zizzer.eecs.umich.edu:/bk/m5
into crampon.my.domain:/z/binkertn/research/m5/head --HG-- extra : convert_revision : cf1b2ab4544492aced52c0012c3a67fee188b683
Diffstat (limited to 'python')
-rw-r--r--python/m5/objects/Uart.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/m5/objects/Uart.py b/python/m5/objects/Uart.py
index cfb09acad..57b8b44af 100644
--- a/python/m5/objects/Uart.py
+++ b/python/m5/objects/Uart.py
@@ -3,5 +3,13 @@ from Device import PioDevice
class Uart(PioDevice):
type = 'Uart'
+ abstract = True
console = Param.SimConsole(Parent.any, "The console")
size = Param.Addr(0x8, "Device size")
+
+class Uart8250(Uart):
+ type = 'Uart8250'
+
+class Uart8530(Uart):
+ type = 'Uart8530'
+