summaryrefslogtreecommitdiff
path: root/python/m5/objects/Uart.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/Uart.py')
-rw-r--r--python/m5/objects/Uart.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/python/m5/objects/Uart.py b/python/m5/objects/Uart.py
deleted file mode 100644
index 6eda5cdb3..000000000
--- a/python/m5/objects/Uart.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from m5 import *
-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'
-
-if build_env['ALPHA_TLASER']:
- class Uart8530(Uart):
- type = 'Uart8530'
-