diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2005-06-05 01:22:33 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2005-06-05 01:22:33 -0400 |
commit | 3011a7ed0b58c5db117c1718c345d8e00c5160de (patch) | |
tree | e45bae70f7462416d7b0ca79fc76dc8bf157ce3f /python | |
parent | 715176d450fe2c85d3a72d80cd5c2460f8c552cd (diff) | |
parent | adce616cfef6f9476d0fbb1bf03fb65734bf3bdf (diff) | |
download | gem5-3011a7ed0b58c5db117c1718c345d8e00c5160de.tar.xz |
Merge zizzer:/bk/m5 into zeep.eecs.umich.edu:/z/saidi/work/m5-clean
--HG--
extra : convert_revision : 0c339eb7574f59665690f7e8457eff0b21e3c4c9
Diffstat (limited to 'python')
-rw-r--r-- | python/m5/objects/Uart.py | 8 |
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' + |