Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

SIC-1 Solutions

Forum for posting SIC-1 solutions · By jaredkrinke

Community

New topic
17
Topics
Topic
Last post
@loop: subleq @A, @IN subleq @B, @IN subleq @A, @B subleq @OUT, @A subleq @B, @B subleq @A, @A, @loop @A: .data 0 @B: .d...
started by Bunny_With_Tea Nov 22, 2023
107 views
No replies yet
@loop: subleq @tmp, @IN subleq @tmp, @IN subleq @OUT, @tmp subleq @tmp, @tmp, @loop
started by Bunny_With_Tea Nov 22, 2023
94 views
No replies yet
This is a solution with least cycles (989) on Steam at present. Some highlights: Specialized instruction sequences to mu...
started by hsfzxjy Aug 02, 2023
132 views
No replies yet
Well, the solution is easy subleq @OUT @IN This solution does read 5 bytes. BUT there is a solution that can read only...
started by greendwin Feb 09, 2023
2 replies
226 views
@start: subleq @count, @IN @loop: subleq @count, @n_one, @continue @done: subleq @OUT, @zero subleq @count, @count, @sta...
started by jaredkrinke Feb 04, 2023
117 views
No replies yet
@loop: subleq @tmp, @IN subleq @tmp2, @tmp, @done subleq @count, @one @loop_reset: subleq @tmp2, @tmp2 subleq @tmp, @tmp...
started by jaredkrinke Feb 04, 2023
99 views
No replies yet
@loop: subleq @tmp2, @IN subleq @tmp, @tmp2, @done subleq @sum, @tmp subleq @tmp2, @tmp2 subleq @tmp, @tmp, @loop @done...
started by jaredkrinke Feb 04, 2023
122 views
No replies yet
@start: subleq @tmp, @IN subleq @remainder, @tmp subleq @tmp, @tmp subleq @tmp, @IN subleq @divisor, @tmp @loop: subleq...
started by jaredkrinke Feb 04, 2023
214 views
No replies yet
Here is my solution for the self hosting problem, inspired by CakeEaterGames ' version. It takes 893 cycles and 193 byte...
started by Bruno Logerfo Dec 31, 2022
2 replies
177 views
Simple solution: @loop: subleq @tmp, @IN subleq @OUT, @tmp subleq @tmp, @tmp, @loop @tmp: .data 0
started by jaredkrinke Aug 26, 2021
1 reply
355 views
149 cycles, 62 bytes @loop: subleq @tmp, @IN subleq @tmp2, @tmp2 subleq @tmp2, @tmp, @dequeue @queue: subleq @stack, @tm...
started by jaredkrinke Dec 10, 2022
106 views
No replies yet
@program: .data 0, @IN, 3, 0, 8, 6, @OUT, 0, -48, 0, 0, 0 If a command is guaranteed to output a positive number to @OUT...
started by nad2040 Sep 09, 2022
2 replies
136 views
@l0: .data 0,0,@l2+3,0,0,0,0,0,0,0,0,0,0,0,0,0 @l1: .data 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @l2: .data 0,0,0,0,0,@l3+...
started by nad2040 Aug 19, 2022
1 reply
210 views
Not a solution but I felt that it would fit here. If your solution starts by taking an input like this subleq @input @IN...
started by trimute2 Jul 27, 2022
2 replies
246 views
Very similar to the "stack memory" puzzle, just with handling lists' zero terminators: @start: subleq @tmp, @IN subleq @...
started by jaredkrinke Jan 25, 2022
1 reply
192 views
@start: subleq @a, @IN subleq @b, @IN subleq @count, @n_one subleq @count, @b @loop: subleq @count, @one, @next subleq @...
started by jaredkrinke Aug 27, 2021
1 reply
268 views
;------------------------------------------------------------------------------------; ; Token recognition Block ; ;----...
started by CakeEaterGames Aug 27, 2021
2 replies
430 views