debug.vhd
来自「ARM7的源代码」· VHDL 代码 · 共 24 行
VHD
24 行
-- $(lic)-- $(help_generic)-- $(help_local)library IEEE;use STD.TEXTIO.all;package debug isprocedure print(s : string);end debug;package body debug isprocedure print(s : string) is variable L1 : line;begin L1:= new string'(s); writeline(output,L1);end;end debug;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?