fork download
  1. ORG 0000h ; Start of program
  2. MOVLW 0x0A ; Load the value 0x0A into WREG
  3. MOVWF 0x20 ; Move the value from WREG to register 0x20
  4. GOTO $ ; Infinite loop to stop the program
  5. END
  6.  
Success #stdin #stdout 0.03s 25912KB
stdin
Standard input is empty
stdout
    ORG 0000h        ; Start of program
    MOVLW 0x0A       ; Load the value 0x0A into WREG
    MOVWF 0x20       ; Move the value from WREG to register 0x20
    GOTO $           ; Infinite loop to stop the program
    END