pic67x.asm

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

ASM
23
字号
;        if you use Microchip's assembler, please indicate the MCU type
;          and do not set the CHIP's CONFIG bits in assemble code
;          set CONFIG bits in Option\POD setting
;        LIST    p=16C73


Start:
         movlw  0
         tris   5
         tris   6
Loop:
         movlw  55h
         movwf  5
         movwf  6
         movlw  0aah
         movwf  5
         movwf  6
         goto   Loop


         end

⌨️ 快捷键说明

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