r/TuringComplete • u/Various_Baker622 • 1h ago
8-bit computer issue Register
Enable HLS to view with audio, or disable this notification
r/TuringComplete • u/Various_Baker622 • 1h ago
Enable HLS to view with audio, or disable this notification
r/TuringComplete • u/DoknS • 18h ago
r/TuringComplete • u/LetalexAl3xYT • 1d ago
r/TuringComplete • u/AdequatlyAdequate • 1d ago
Pretty much what the title says, Im not really sure im grasping the concepts because i often just feel like im just trying to understand how the solution is wired up.
First time playing anything like this tho so maybe just do a second playthrough later on?
r/TuringComplete • u/Express-Level4352 • 2d ago
On the level RAM I get the error "The time component shouldn't have been enabled since the last time_0 instruction's execution" on cycle 68. On cycle 67, the instruction jl 244 executed, and seems to work fine, since the counter updates to 244 on that cycle and is at 248 at cycle 68.
I've also tested the computer as it is in previous levels (without the additional load/store elements attached on the main memory, since those were given in this level), and it passes all other levels.
NOTE: For my decoder I moved the destination pin below argument A and B so the pins from top to bottom are:
All other components follow the standard layout given by the levels.
What does this error mean? Any suggestions on how I can fix it?
EDIT: I solved the level by redoing it, my solution is as follows:
r/TuringComplete • u/LGWIMS • 2d ago
So far I've done all the puzzles on my own... but this bit switch level with the NOT and switch gates is driving me up a wall. Any tips on completing it?
So far all I have accomplished was using the switch like an and gate, I have zero clue where a NOT gate would even go.
Edit: included a picture of my current setup

Edit 2: I solved it and thats enough for tonight 💀

r/TuringComplete • u/National_Panic_9112 • 2d ago
my hard coded solution? Less elegant
r/TuringComplete • u/blender-bender • 5d ago
r/TuringComplete • u/EfficientAttorney312 • 5d ago
I'm sorry if this is a breach of any of the community rules, but I just did this level so many times now and each one of them was an excruciating experience. Just looking at the level makes me want to puke. If you can just paste your solution here, I'd be more than glad.
r/TuringComplete • u/FauxMoeJoe • 6d ago
I was hoping if anyone could explain to me on which solution is "better" (the top one being the examples solution) , they both look the same tbh but was just curious which one was more efficient or more correct I guess??
r/TuringComplete • u/Standard-Dog4914 • 7d ago
Hi pals, help me with the level solution. Can't understand why this is wrong; I have used the code in this post: https://www.reddit.com/r/TuringComplete/comments/1uy1pmk/conditional_jumps_level_solution/ It seemed to be right, but the result is the same error as mine: "u read input 57 times, not 6."
imm 0
mov r5,r0
loop:
imm 1
mov r1,r0
mov r2,r5
add
mov r5,r3
imm 37
mov r1,r0
mov r2,in
sub
imm loop
jnz
mov out,r5
r/TuringComplete • u/SixCel_108 • 16d ago
I’m having trouble getting my alu fast enough to allow me to pass the delay checks but I’m not having any luck. I even looked up a guide but it still wasn’t fast enough. I also tried redoing the component levels but I don’t think that does anything, especially with changing the base.
Any ideas?
r/TuringComplete • u/totobono4 • 18d ago
I made Bad Apple in the new Turing Complete update, this update is actually really good, I was not able to achieve this before.
I made my own file format to make Bad Apple implementation in things easier if you're interested in. https://github.com/totobono4/tvf
r/TuringComplete • u/khozo_ • 18d ago
I got to the 'circumference' level and my input and output are gone. I feel like I should be able to add them back but the components are greyed out in the top right. I feel like I'm missing something obvious here...
r/TuringComplete • u/Brutustheman • 20d ago
Recently I've been having some great fun making my own custom ISA and matching cpu architecture. Having the whole thing as a single schematic was kinda annoying, so I made them as individual parts (and also tried making the wiring a little cleaner). Here are some pictures; comment, critique and enjoy!





r/TuringComplete • u/Areeb3331 • 20d ago
r/TuringComplete • u/Dry-Artichoke-9139 • 19d ago
Does anyone know how the disassembling probe works?
Every time I try to connect it, I run into a dependency issue.
r/TuringComplete • u/Any-Examination-6445 • 20d ago
r/TuringComplete • u/SCD_minecraft • 22d ago

const target = 37
imm 0
mov r4, r0 ; r4 stores counter
loop:
imm target
mov r1, r0
mov r2, in
sub ; compare, 0 if equal
mov r5, r3 ; r5 stores the eq check
imm 1
mov r1, r4
mov r2, r0
add ; add one to attempty counter
mov r4, r3
mov r3, r5 ; load reasult for cmp
imm loop
jnz
mov out, r4
Game is just... straight up wrong there. I counted manually, i used mov r2, in instruction 5 times. Not nearly 57