gateware

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

003-mov-imm-ext.s (204B)


      1 mov r0, 0x1234
      2 mov r1, 0xA7A7
      3 mov r2, 0x1111
      4 mov r3, 0x2222
      5 mov r4, 0x4444
      6 mov r5, 0x8888
      7 mov r6, 0x5A5A
      8 mov r7, 0x8080
      9 
     10 nop
     11 halt
     12 
     13 ;R0 1234
     14 ;R1 a7a7
     15 ;R2 1111
     16 ;R3 2222
     17 ;R4 4444
     18 ;R5 8888
     19 ;R6 5a5a
     20 ;R7 8080
     21