Search found 4 matches

by jelly
05 Apr 2024, 04:42
Forum: Hardware and software hacking
Topic: Is this picture about instruction and operation right?
Replies: 2
Views: 352

Re: Is this picture about instruction and operation right?

Interesting.. you found an error in my slides, after >5 years :-) The slides are indeed incorrect. The correct information is on GitHub: https://github.com/kervinck/gigatron-rom/blob/master/Docs/Native-instructions.pdf . In my slide, the instruction matches this order: IR1 IR0 IR4 IR3 IR2 IR7 IR6 I...
by jelly
03 Apr 2024, 03:01
Forum: Hardware and software hacking
Topic: Is this picture about instruction and operation right?
Replies: 2
Views: 352

Is this picture about instruction and operation right?

Hello. I'm studying gigatron nowadays. Engilsh is not my mother tongue, so my words can be weird. I ask for you understanding. :) 1.jpg In this picture, EPROM outputs a 16-bit digit. High address(left) one byte is instruction, and the low address(right) one byte is operand. I brought a machine code ...
by jelly
27 Mar 2024, 05:29
Forum: Hardware and software hacking
Topic: What does 'Xpp' mean?
Replies: 1
Views: 4116

What does 'Xpp' mean?

Hello everyone # ld([Y,Xpp], OUT) ld [y,x++],out What does 'x++' mean? If there's a code like that, what is happening? As I think, 1. RAM [YYYYYYYYXXXXXXXX] is loaded to the OUT register 2. X register incremented is it right? For example, if each register value and the codes are like that; X: 0000 0...
by jelly
26 Mar 2024, 08:35
Forum: Hardware and software hacking
Topic: ROMv1.asm.py
Replies: 2
Views: 3216

ROMv1.asm.py

Hello, I'm studying ROM files and there's a question about that. I attached a picture. It may be useful to understand my question. The assembly instruction 'jmp' can do the 'far jump' action, so if 'jmp(Y,'vBlankStart')' is executed, we jump to 'vBlankStart'. Then can 'SYS_Reset_36' be executed? Eve...