Skip to content

Commit

Permalink
Update info
Browse files Browse the repository at this point in the history
  • Loading branch information
mole99 committed Apr 13, 2024
1 parent a0df1d8 commit fb9fad0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project:
title: "Tiny Shader" # Project title
author: "Leo Moser" # Your name
discord: "mole99" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "Tiny Shader allows you to write a small programm of 8 instructions that is executed for each pixel independently on an 80x60 screen." # One line description of what your project does
description: "With Tiny Shader you can write a small program to create different images and even animations." # One line description of what your project does
language: "SystemVerilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 25175000 # Clock frequency in Hz (or 0 if not applicable)

Expand All @@ -26,7 +26,7 @@ project:
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: ""
ui[0]: "mode"
ui[1]: ""
ui[2]: ""
ui[3]: ""
Expand All @@ -46,10 +46,10 @@ pinout:
uo[7]: "hsync"

# Bidirectional pins
uio[0]: ""
uio[1]: ""
uio[2]: ""
uio[3]: ""
uio[0]: "CS"
uio[1]: "MOSI"
uio[2]: "MISO"
uio[3]: "SCK"
uio[4]: ""
uio[5]: ""
uio[6]: ""
Expand Down
4 changes: 2 additions & 2 deletions sw/assembler.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
# Boolean operations
'AND' : {'format': 'dual_operand', 'opcode': '01_00', 'short': 'RA <= RA & RB', 'description': 'Boolean AND of RA and RB, result written into RA.', 'category': 'Boolean'},
'OR' : {'format': 'dual_operand', 'opcode': '01_01', 'short': 'RA <= RA | RB', 'description': 'Boolean OR of RA and RB, result written into RA.', 'category': 'Boolean'},
'NOT' : {'format': 'dual_operand', 'opcode': '01_10', 'short': 'RA <= ~RB', 'description': 'Boolean NOT of RB, result written into RA.', 'category': 'Boolean'},
'XOR' : {'format': 'dual_operand', 'opcode': '01_11', 'short': 'RA <= RA ^ RB', 'description': 'Boolean XOR of RA and RB, result written into RA.', 'category': 'Boolean'},
'NOT' : {'format': 'dual_operand', 'opcode': '01_10', 'short': 'RA <= ~RB', 'description': 'Invert all bits of RB, result written into RA.', 'category': 'Boolean'},
'XOR' : {'format': 'dual_operand', 'opcode': '01_11', 'short': 'RA <= RA ^ RB', 'description': 'XOR of RA and RB, result written into RA.', 'category': 'Boolean'},

# Various
'MOV' : {'format': 'dual_operand', 'opcode': '10_00', 'short': 'RA <= RB', 'description': 'Move value of RB into RA.', 'category': 'Move'},
Expand Down

0 comments on commit fb9fad0

Please sign in to comment.