plm_main.plm

来自「用单片机实现的总线比较的2取2功能的安全计算机」· PLM 代码 · 共 19 行

PLM
19
字号
PLM_MAIN: do;

abc: procedure external;
end abc;

f0: procedure external;
end f0;

declare i(3) byte public;

declare aa byte at (4000h) data (2);

start:
    call abc;
    call f0;
    goto start;

end PLM_MAIN;

⌨️ 快捷键说明

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