tisc

tiny instruction set computer
Log | Files | Refs | README

commit d60510d091863fb28c543e175cf1c6b02e3ca924
parent 91b6479ffe3db7f4dde5686e02c6d41d61cc1f57
Author: Paul Longtine <paul@nanner.co>
Date:   Mon, 20 Jun 2022 07:39:02 -0400

Updated / added version numbers

Diffstat:
MINSTRUCTION_SET | 21++++++++++-----------
Mtisc.c | 2+-
2 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/INSTRUCTION_SET b/INSTRUCTION_SET @@ -1,15 +1,15 @@ -TISCv1.3 (c) Paul Longtine <paul@nanner.co> +TISCv2.0 (c) Paul Longtine <paul@nanner.co> Tiny Instruction Set Computer - __________ ___ ________ ________ -|\___ ___\ |\ \ |\ ____\ |\ ____\ -\|___ \ \_| \ \ \ \ \ \___|_ \ \ \___| - \ \ \ \ \ \ \ \_____ \ \ \ \ - \ \ \ \ \ \ \|____|\ \ \ \ \____ + __________ ___ ________ ________ +|\___ ___\ |\ \ |\ ____\ |\ ____\ +\|___ \ \_| \ \ \ \ \ \___|_ \ \ \___| + \ \ \ \ \ \ \ \_____ \ \ \ \ + \ \ \ \ \ \ \|____|\ \ \ \ \____ \ \__\ \ \__\ ____\_\ \ \ \_______\ - \|__| \|__| |\_________\ \|_______| v1.3 - \|_________| - + \|__| \|__| |\_________\ \|_______| v2.0 + \|_________| + -----------------------------------------------------------------------<-------- RAW - memonic - description -----------------------------------------------------------------------<-------- @@ -45,4 +45,4 @@ A = Arguement A / ARGA GRA = General Purpose Register A = 0b01 GRB = General Purpose Register B = 0b10 -GRC = General Purpose Register C = 0b11 -\ No newline at end of file +GRC = General Purpose Register C = 0b11 diff --git a/tisc.c b/tisc.c @@ -727,7 +727,7 @@ int main(int argc, char *argv[]) printf("Error opening file '%s'\n", output); goto DITCH; } - printf("Assembling tac file: '%s'\n", input); + printf("Assembling tac file: '%s' TISC v2.0\n", input); while (parse(&line_number, inputf, line, &label, &opcodes, args)) {