Deleted Added
sdiff udiff text old ( 12239:ae1686aaebc5 ) new ( 12689:f554325372e9 )
full compact
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 24 unchanged lines hidden (view full) ---

33
34class Uart(BasicPioDevice):
35 type = 'Uart'
36 abstract = True
37 cxx_header = "dev/serial/uart.hh"
38 platform = Param.Platform(Parent.any, "Platform this device is part of.")
39 device = Param.SerialDevice(Parent.any, "The terminal")
40
41class Uart8250(Uart):
42 type = 'Uart8250'
43 cxx_header = "dev/serial/uart8250.hh"