gateware

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

001-mov-imm-bits.s (191B)


      1 mov r0, 0x01
      2 mov r1, 0x02
      3 mov r2, 0x04
      4 mov r3, 0x08
      5 mov r4, 0x10
      6 mov r5, 0x20
      7 mov r6, 0x40
      8 mov r7, -256
      9 nop
     10 nop
     11 halt
     12 
     13 ;R0 0001
     14 ;R1 0002
     15 ;R2 0004
     16 ;R3 0008
     17 ;R4 0010
     18 ;R5 0020
     19 ;R6 0040
     20 ;R7 ff00
     21