bitsy-lang 0.4.0

Bitsy is a modern hardware description language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    .text
    .globl _start

_start:
    li gp, 0x10000
    li t0, 0x0

.loop:
    lw t1, 0(t0)
    andi t1, t1, 0xff
    sw t1, 0(gp)
    addi t0, t0, 1

    j .loop

.halt:
    j .halt