欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

uart.py

M5,一个功能强大的多处理器系统模拟器.很多针对处理器架构,性能的研究都使用它作为模拟平台
PY
字号:
from m5.params import *from m5.proxy import *from m5 import build_envfrom Device import BasicPioDeviceclass Uart(BasicPioDevice):    type = 'Uart'    abstract = True    sim_console = Param.SimConsole(Parent.any, "The console")class Uart8250(Uart):    type = 'Uart8250'if build_env['ALPHA_TLASER']:    class Uart8530(Uart):        type = 'Uart8530'

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -