gateware

A collection of little open source FPGA hobby projects
git clone http://frotz.net/git/gateware.git
Log | Files | Refs | README

000-mov-imm.s (192B)


      1 mov r0, 0x10
      2 mov r1, 0x20
      3 mov r2, 0x30
      4 mov r3, 0x40
      5 mov r4, 0x50
      6 mov r5, 0x60
      7 mov r6, 0x70
      8 mov r7, 0x80
      9 
     10 nop
     11 nop
     12 halt
     13 
     14 ;R0 0010
     15 ;R1 0020
     16 ;R2 0030
     17 ;R3 0040
     18 ;R4 0050
     19 ;R5 0060
     20 ;R6 0070
     21 ;R7 0080
     22