fork download
  1. MOVLW 0X35 ; Load WREG with 0x35
  2. MOVWF FSR ; Move WREG (0x35) to FSR (File Select Register)
  3.  
  4. MOVLW 0XFF ; Load WREG with 0xFF
  5. MOVWF INDF ; Move WREG (0xFF) to the memory location pointed by FSR
  6.  
  7. MOVLW 0XFD ; Load WREG with 0xFD
  8. MOVWF 0x31 ; Move WREG (0xFD) to register 0x31
  9.  
  10. INCF 0x31,1 ; Increment register 0x31 (0xFD + 1 = 0xFE) and store the result in 0x31
  11.  
  12.  
  13.  
Success #stdin #stdout 0.03s 25916KB
stdin
Standard input is empty
stdout
MOVLW 0X35      ; Load WREG with 0x35
MOVWF FSR       ; Move WREG (0x35) to FSR (File Select Register)

MOVLW 0XFF      ; Load WREG with 0xFF
MOVWF INDF      ; Move WREG (0xFF) to the memory location pointed by FSR

MOVLW 0XFD      ; Load WREG with 0xFD
MOVWF 0x31      ; Move WREG (0xFD) to register 0x31

INCF 0x31,1     ; Increment register 0x31 (0xFD + 1 = 0xFE) and store the result in 0x31