-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathttsky25b.json
More file actions
12212 lines (12212 loc) · 338 KB
/
Copy pathttsky25b.json
File metadata and controls
12212 lines (12212 loc) · 338 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 3,
"id": "ttsky25b",
"name": "Tiny Tapeout SKY 25b",
"repo": "https://github.com/TinyTapeout/tinytapeout-sky-25b",
"commit": "2595dd0d3c4148e6b0175ce6b5a670aca0a25b4c",
"updated": "2025-12-09T12:46:04Z",
"projects": [
{
"macro": "tt_um_2048_vga_game",
"address": 712,
"title": "2048 sliding tile puzzle game (VGA)",
"author": "Uri Shaked",
"description": "Slide numbered tiles on a grid to combine them to create a tile with the number 2048.",
"clock_hz": 25175000,
"tiles": "2x2",
"analog_pins": [],
"repo": "https://github.com/urish/tt-2048-game",
"commit": "5323a03310754ce15420a32ef991d9fd1353e51e",
"pinout": {
"ui[0]": "btn_up",
"ui[1]": "btn_down",
"ui[2]": "btn_left",
"ui[3]": "btn_right",
"ui[4]": "gamepad_latch",
"ui[5]": "gamepad_clk",
"ui[6]": "gamepad_data",
"ui[7]": "debug_mode",
"uo[0]": "R1",
"uo[1]": "G1",
"uo[2]": "B1",
"uo[3]": "VSync",
"uo[4]": "R0",
"uo[5]": "G0",
"uo[6]": "B0",
"uo[7]": "HSync",
"uio[0]": "debug_cmd",
"uio[1]": "debug_cmd",
"uio[2]": "debug_cmd",
"uio[3]": "debug_cmd",
"uio[4]": "debug_data",
"uio[5]": "debug_data",
"uio[6]": "debug_data",
"uio[7]": "debug_data"
}
},
{
"macro": "tt_um_6502_chip_select",
"address": 293,
"title": "6502 Chip Selector",
"author": "Brandon Ashworth",
"description": "Simple TT Project to select the different chips in Ben Eater's 6502 project.",
"clock_hz": 1000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/brandonvfx/tiny_tapeout_class",
"commit": "594b9883645b232e4dde811e64db992fdec408f1",
"pinout": {
"ui[0]": "CLK",
"ui[1]": "A11",
"ui[2]": "A12",
"ui[3]": "A13",
"ui[4]": "A14",
"ui[5]": "A15",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "ROM_CS",
"uo[1]": "RAM_CS",
"uo[2]": "RAM_OE",
"uo[3]": "PERIPH_CS",
"uo[4]": "VIA_CS",
"uo[5]": "URAT_CS",
"uo[6]": "SID_CS",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_Electom_cla_4bits",
"address": 551,
"title": "4-bit CLA",
"author": "Wei Zhang",
"description": "A 4 bit carry look-ahead adder",
"clock_hz": 0,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/Electom/SKY25b_CLA_4bits",
"commit": "521eb0955faa57840bc2cd849bdd9a376399c49d",
"pinout": {
"ui[0]": "a[0]",
"ui[1]": "a[1]",
"ui[2]": "a[2]",
"ui[3]": "a[3]",
"ui[4]": "b[0]",
"ui[5]": "b[1]",
"ui[6]": "b[2]",
"ui[7]": "b[3]",
"uo[0]": "s[0]",
"uo[1]": "s[1]",
"uo[2]": "s[2]",
"uo[3]": "s[3]",
"uo[4]": "co",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "ci",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_FG_TOP_Dominik_Brandstetter",
"address": 128,
"title": "Function Generator",
"author": "Dominik Brandstetter",
"description": "An 8-bit TinyTapeout function generator targeting the AD5330 parallel DAC. A write-only register interface selects a constant signal, a sine wave, or programmable trapezoid/pulse waveforms with adjustable amplitude, offset, phase, and timing.",
"clock_hz": 1000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/DomnikBrandstetter/jku-sky-FunctionGenerator",
"commit": "3bd72bc8aaef855f1bbe33bbaedd59600ea0aabf",
"pinout": {
"ui[0]": "DATA_IN_0",
"ui[1]": "DATA_IN_1",
"ui[2]": "DATA_IN_2",
"ui[3]": "DATA_IN_3",
"ui[4]": "DATA_IN_4",
"ui[5]": "DATA_IN_5",
"ui[6]": "DATA_IN_6",
"ui[7]": "DATA_IN_7",
"uo[0]": "DAC_OUT_0",
"uo[1]": "DAC_OUT_1",
"uo[2]": "DAC_OUT_2",
"uo[3]": "DAC_OUT_3",
"uo[4]": "DAC_OUT_4",
"uo[5]": "DAC_OUT_5",
"uo[6]": "DAC_OUT_6",
"uo[7]": "DAC_OUT_7",
"uio[0]": "dac_clr_OUT (active low)",
"uio[1]": "dac_pd_OUT (active low)",
"uio[2]": "dac_wr_OUT (active low)",
"uio[3]": "CONFIG ADDR_0_IN",
"uio[4]": "CONFIG ADDR_1_IN",
"uio[5]": "CONFIG ADDR_2_IN",
"uio[6]": "WR_enable_IN (active low)",
"uio[7]": "Enable_IN (active low)"
}
},
{
"macro": "tt_um_Jsilicon",
"address": 198,
"title": "Jsilicon",
"author": "JunHyeok Seo (mirseo)",
"description": "A dual-mode 8-bits CPU/ALU core with Manual and Auto (ROM) modes, built in Verilog.",
"clock_hz": 12000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/mirseo/JSilicon",
"commit": "e2485c351ea82d3985e9788c780cfdc3728e73a6",
"pinout": {
"ui[0]": "Operand B bit[0]",
"ui[1]": "Operand B bit[1]",
"ui[2]": "Operand B bit[2]",
"ui[3]": "Operand B bit[3]",
"ui[4]": "Operand A bit[0]",
"ui[5]": "Operand A bit[1]",
"ui[6]": "Operand A bit[2]",
"ui[7]": "Operand A bit[3]",
"uo[0]": "ALU result[0]",
"uo[1]": "ALU result[1]",
"uo[2]": "ALU result[2]",
"uo[3]": "ALU result[3]",
"uo[4]": "ALU result[4]",
"uo[5]": "ALU result[5]",
"uo[6]": "ALU result[6]",
"uo[7]": "UART Busy Status",
"uio[0]": "UART TX Output",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "Mode Select (0:Manual, 1:CPU)",
"uio[5]": "Manual Opcode[0] (LSB)",
"uio[6]": "Manual Opcode[1]",
"uio[7]": "Manual Opcode[2] (MSB)"
}
},
{
"macro": "tt_um_Lukasseirl",
"address": 260,
"title": "Tiny_Tapeout_Scoreboard",
"author": "Lukasseirl",
"description": "Scoreboard for two players that can be controlled with two pushbuttons.",
"clock_hz": 1000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/Lukasseirl/Tiny_Tapeout_Scoreboard",
"commit": "f6e4de013deb11d8a41b1d87a4ea8d5a41e611bf",
"pinout": {
"ui[0]": "P1",
"ui[1]": "P2",
"ui[2]": "",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "Seg_A1",
"uo[1]": "Seg_B1",
"uo[2]": "Seg_C1",
"uo[3]": "Seg_D1",
"uo[4]": "Seg_E1",
"uo[5]": "Seg_F1",
"uo[6]": "Seg_G1",
"uo[7]": "Seg_H1",
"uio[0]": "Seg_A2",
"uio[1]": "Seg_B2",
"uio[2]": "Seg_C2",
"uio[3]": "Seg_D2",
"uio[4]": "Seg_E2",
"uio[5]": "Seg_F2",
"uio[6]": "Seg_G2",
"uio[7]": "Seg_H2"
}
},
{
"macro": "tt_um_Max00Ker_Traffic_Light",
"address": 965,
"title": "Traffic Light Controller",
"author": "Maximilian Kernmaier",
"description": "A digital traffic light controller with pedestrian request handling and MAX7219 display interface.",
"clock_hz": 1000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/Max00Ker/TinyTapeoutV1",
"commit": "0020ba699c602a2b4a908b85241eb53743ee245d",
"pinout": {
"ui[0]": "Main ON/OFF Switch",
"ui[1]": "Pedestrian request button (left)",
"ui[2]": "Pedestrian request button (right)",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "Car red light",
"uo[1]": "Car yellow light",
"uo[2]": "Car green light",
"uo[3]": "Pedestrian red light (left)",
"uo[4]": "Pedestrian green light (left)",
"uo[5]": "Pedestrian red light (right)",
"uo[6]": "Pedestrian green light (right)",
"uo[7]": "",
"uio[0]": "DIN (MAX7219 left)",
"uio[1]": "CS (MAX7219 left)",
"uio[2]": "SCLK (MAX7219 left)",
"uio[3]": "DIN (MAX7219 right)",
"uio[4]": "CS (MAX7219 right)",
"uio[5]": "SCLK (MAX7219 right)",
"uio[6]": "Pedestrian request indicator (left)",
"uio[7]": "Pedestrian request indicator (right)"
}
},
{
"macro": "tt_um_MichaelBell_tinyQV",
"address": 708,
"title": "TinyQV Risc-V SoC",
"author": "Michael Bell",
"description": "A Risc-V SoC for Tiny Tapeout",
"clock_hz": 64000000,
"tiles": "3x2",
"analog_pins": [],
"repo": "https://github.com/Almas00222/ttsky25b-tinyQV",
"commit": "215b51fd64ff8ae75c90542cdbefac6e48338fd2",
"pinout": {
"ui[0]": "Interrupt 0",
"ui[1]": "Interrupt 1",
"ui[2]": "SPI MISO",
"ui[3]": "1 MHz clock for time",
"ui[4]": "Game controller latch",
"ui[5]": "Game controller clock",
"ui[6]": "Game controller data",
"ui[7]": "UART RX",
"uo[0]": "UART TX",
"uo[1]": "UART RTS",
"uo[2]": "SPI DC",
"uo[3]": "SPI MOSI",
"uo[4]": "SPI CS",
"uo[5]": "SPI SCK",
"uo[6]": "Debug UART TX",
"uo[7]": "Debug signal / PWM",
"uio[0]": "Flash CS",
"uio[1]": "SD0",
"uio[2]": "SD1",
"uio[3]": "SCK",
"uio[4]": "SD2",
"uio[5]": "SD3",
"uio[6]": "RAM A CS",
"uio[7]": "RAM B CS / PWM"
}
},
{
"macro": "tt_um_Onchip_BandGap",
"address": 486,
"title": "OnChip - Bandgap Reference",
"author": "Jeison Acevedo & Ramon Sarmiento",
"description": "BandGap Voltage Reference 1.23V",
"clock_hz": 0,
"tiles": "1x2",
"analog_pins": [
1,
3,
2
],
"repo": "https://github.com/RamonSsc/tt_um_Onchip_BandGap",
"commit": "eebfde5284e6380b75241a43f151b39d22c11e3c",
"pinout": {
"ui[0]": "",
"ui[1]": "",
"ui[2]": "",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "",
"uo[1]": "",
"uo[2]": "",
"uo[3]": "",
"uo[4]": "",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": "",
"ua[0]": "vref",
"ua[1]": "vsense",
"ua[2]": "ibias",
"ua[3]": "",
"ua[4]": "",
"ua[5]": ""
}
},
{
"macro": "tt_um_Onchip_VCOx2",
"address": 271,
"title": "Onchip - Ring VCO 11 stages x2",
"author": "Jorge Angarita",
"description": "Two identical 11-stages ring oscillator voltage controled oscillator",
"clock_hz": 0,
"tiles": "1x2",
"analog_pins": [
11,
6,
10,
7,
9,
8
],
"repo": "https://github.com/Gior-gio/tt_um_Onchip_VCO",
"commit": "e47c2cc3bc2e1c8d7f4d183941f3758d8827216e",
"pinout": {
"ui[0]": "",
"ui[1]": "",
"ui[2]": "",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "",
"uo[1]": "",
"uo[2]": "",
"uo[3]": "",
"uo[4]": "",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": "",
"ua[0]": "out1",
"ua[1]": "vctrn1",
"ua[2]": "vrst1",
"ua[3]": "out2",
"ua[4]": "vctrn2",
"ua[5]": "vrst2"
}
},
{
"macro": "tt_um_PWM",
"address": 746,
"title": "PWM_selector",
"author": "Delia Hurtado, Ruben Velasquez, Gerardo Aerreola, Julio Ramirez",
"description": "PWM_module generates a PWM (Pulse-Width Modulation) signal using a counter and a comparator. The output duty-cycle resolution is 12.5%.",
"clock_hz": 10000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/DeliaMariaHC/PWM_selector",
"commit": "4f9899560b05b1130c362c86f4021580dacdbfe8",
"pinout": {
"ui[0]": "speed[0]",
"ui[1]": "speed[1]",
"ui[2]": "speed[2]",
"ui[3]": "enable",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "PWM",
"uo[1]": "",
"uo[2]": "",
"uo[3]": "",
"uo[4]": "",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_PseudoSM_ASIC",
"address": 782,
"title": "PSM_asic",
"author": "Cristian Valenti",
"description": "It is the implementation of a reduced softmax function for neural networks",
"clock_hz": 40000000,
"tiles": "4x2",
"analog_pins": [],
"repo": "https://github.com/CristianValenti/Pseudo_Softmax",
"commit": "d96800d4a676a94ad75d5a1ccbbf21ca00a5b2d7",
"pinout": {
"ui[0]": "Data_in[0]",
"ui[1]": "Data_in[1]",
"ui[2]": "Data_in[2]",
"ui[3]": "Data_in[3]",
"ui[4]": "Data_in[4]",
"ui[5]": "Data_in[5]",
"ui[6]": "Data_in[6]",
"ui[7]": "Data_in[7]",
"uo[0]": "Data_out[0]",
"uo[1]": "Data_out[1]",
"uo[2]": "Data_out[2]",
"uo[3]": "Data_out[3]",
"uo[4]": "Data_out[4]",
"uo[5]": "Data_out[5]",
"uo[6]": "Data_out[6]",
"uo[7]": "Data_out[7]",
"uio[0]": "Sel_out[0]",
"uio[1]": "Sel_out[1]",
"uio[2]": "Sel_out[2]",
"uio[3]": "Sel_out[3]",
"uio[4]": "Sel_in[0]",
"uio[5]": "Sel_in[1]",
"uio[6]": "Sel_in[2]",
"uio[7]": "Sel_in[3]"
}
},
{
"macro": "tt_um_Sai222777",
"address": 877,
"title": "LFSR Driven Cryptography",
"author": "Sai Surya",
"description": "A two-channel XOR stream cipher with fully programmable 32/16/8/4-bit Galois LFSRs",
"clock_hz": 12500,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/Sai-222777/TinyTapeout_Cipher",
"commit": "c837152a7b5186f877f4f16484919c89075af8b9",
"pinout": {
"ui[0]": "sel0 (Used for LSFR configuration)",
"ui[1]": "sel1 (Used for LSFR configuration)",
"ui[2]": "tx_p (Plaintext bitstream for transmission)",
"ui[3]": "rx_e (Encrypted bitstream for reception)",
"ui[4]": "cfg_en (Active high configuration enable for the 130-bit serial shift register)",
"ui[5]": "cfg_i (Configuration input to the 130-bit serial shift register)",
"ui[6]": "tx_en (Transmit channel enable)",
"ui[7]": "rx_en (Receive channel enable)",
"uo[0]": "tx_e (Encrypted bitstream for transmission)",
"uo[1]": "rx_p (Decrypted bitstream for reception)",
"uo[2]": "dgb_tx_p (Decrypted transmit bitstream, debug pin disabled by default)",
"uo[3]": "dgb_rx_e (Encrypted receive bitstream, debug pin disabled by default)",
"uo[4]": "cfg_o (Configuration output from the 130-bit shift register)",
"uo[5]": "heartbeat0 (Bit [7] from the heartbeat counter)",
"uo[6]": "heartbeat1 (Bit [8] from the heartbeat counter)",
"uo[7]": "heartbeat2 (Bit [9] from the heartbeat counter)",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_TinyWhisper",
"address": 494,
"title": "Tiny Whisper",
"author": "Simon Dorrer, Jonathan Hager, Matthias Jung, Harald Pretl",
"description": "This chip implements a transmitter for the wireless long-reach protocol called WSPR (weak signal propagation reporter) in the shortwave frequency range (3 MHz to 30 MHz), containing a CORDIC, a DS-Modulator, and LO Generation (digital core), as well as an analog IQ Modulator.",
"clock_hz": 56000000,
"tiles": "2x2",
"analog_pins": [
0,
4,
1,
3,
2
],
"repo": "https://github.com/iic-jku/tt-sky-jku-jmu-TinyWhisper",
"commit": "16d90b3e10a1507ee92539b9f85bdd27f3e1da6a",
"pinout": {
"ui[0]": "LO_QX_i",
"ui[1]": "LO_Q_i",
"ui[2]": "LO_IX_i",
"ui[3]": "LO_I_i",
"ui[4]": "afe_en_i",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "",
"uo[1]": "",
"uo[2]": "",
"uo[3]": "",
"uo[4]": "",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": "",
"ua[0]": "vout_RF",
"ua[1]": "vinn_Q",
"ua[2]": "vinp_Q",
"ua[3]": "vinn_I",
"ua[4]": "vinp_I",
"ua[5]": ""
}
},
{
"macro": "tt_um_VHDL_FSM",
"address": 552,
"title": "FSM",
"author": "G.kahlouche ",
"description": "dd",
"clock_hz": 100000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/GhilasIC/Digital1.1",
"commit": "de0ba248423e64ebb99c24bf6fd41946ed95a795",
"pinout": {
"ui[0]": "clk",
"ui[1]": "reset",
"ui[2]": "coin",
"ui[3]": "btn (0)",
"ui[4]": "btn (1)",
"ui[5]": "btn (2)",
"ui[6]": "btn (3)",
"ui[7]": "",
"uo[0]": "dispense",
"uo[1]": "change",
"uo[2]": "product_num(0)",
"uo[3]": "product_num(1)",
"uo[4]": "product_num(2)",
"uo[5]": "product_num(3)",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_VHDL_PWM_DEMUX",
"address": 554,
"title": "PWM Generator",
"author": "Shyam Sunder Mandapally",
"description": "PWM Generator with demux logic",
"clock_hz": 10000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/mshyam001/pwm_with_demux_logic",
"commit": "daf374426228f98caddd1ce3186e6faf9567161b",
"pinout": {
"ui[0]": "data_i[0] (LSB)",
"ui[1]": "data_i[1]",
"ui[2]": "data_i[2]",
"ui[3]": "data_i[3]",
"ui[4]": "data_i[4]",
"ui[5]": "data_i[5]",
"ui[6]": "data_i[6]",
"ui[7]": "data_i[7]",
"uo[0]": "pwm_o (active-high PWM)",
"uo[1]": "",
"uo[2]": "",
"uo[3]": "",
"uo[4]": "",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "sel[0]",
"uio[1]": "sel[1]",
"uio[2]": "wr (strobe)",
"uio[3]": "commit (strobe)",
"uio[4]": "data_i[8]",
"uio[5]": "data_i[9] (MSB)",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_ag2048_tiny_calculator",
"address": 546,
"title": "Tiny Calculator",
"author": "Andy Gong",
"description": "A tiny calculator chip with built-in I/O drivers",
"clock_hz": 0,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/AG2048/tiny-calculator-asic",
"commit": "520ee1979134c9eb3737354ada0bce2b78d00df9",
"pinout": {
"ui[0]": "i_BL0",
"ui[1]": "i_BL1",
"ui[2]": "i_BL2",
"ui[3]": "i_BL3",
"ui[4]": "i_ADD",
"ui[5]": "i_SUB",
"ui[6]": "i_MUL",
"ui[7]": "i_DIV",
"uo[0]": "o_WL0",
"uo[1]": "o_WL1",
"uo[2]": "o_WL2",
"uo[3]": "o_WL3",
"uo[4]": "o_SER",
"uo[5]": "o_SRCLK",
"uo[6]": "o_RCLK",
"uo[7]": "o_OE_n",
"uio[0]": "o_ADD",
"uio[1]": "o_SUB",
"uio[2]": "o_MUL",
"uio[3]": "o_DIV",
"uio[4]": "i_EQ",
"uio[5]": "i_AC",
"uio[6]": "i_NEG",
"uio[7]": "i_NEG_EN"
}
},
{
"macro": "tt_um_alexlowl_myTTproject",
"address": 544,
"title": "myTTproject",
"author": "alexlowl",
"description": "A Knight Rider-style LED chaser with PWM brightness control. Speed and pause are adjustable using three debounced buttons. A bargraph is used as LED bar.",
"clock_hz": 50000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/alexlowl/jku-sky-myTTproject",
"commit": "09428fac22ec2f37eab7780dac0ac11cb8dcfb22",
"pinout": {
"ui[0]": "pause",
"ui[1]": "faster",
"ui[2]": "slower",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "LED0",
"uo[1]": "LED1",
"uo[2]": "LED2",
"uo[3]": "LED3",
"uo[4]": "LED4",
"uo[5]": "LED5",
"uo[6]": "LED6",
"uo[7]": "LED7",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_algofoogle_vga_matrix_dac",
"address": 233,
"title": "Analog VGA CSDAC experiments (TTSKY25b)",
"author": "algofoogle (Anton Maurovic)",
"description": "Current switching matrix DAC implementations for analog VGA displays",
"clock_hz": 25175000,
"tiles": "1x2",
"analog_pins": [
5,
4,
3,
2
],
"repo": "https://github.com/algofoogle/ttsky25b-analog-vga-dacs",
"commit": "990343102136a498985bc3dfd48aa086a8ee417b",
"pinout": {
"ui[0]": "mode[0] / dac_in[0]",
"ui[1]": "mode[1] / dac_in[1]",
"ui[2]": "mode[2] / dac_in[2]",
"ui[3]": "mode[3] / dac_in[3]",
"ui[4]": "mode[4] / dac_in[4]",
"ui[5]": "mode[5] / dac_in[5]",
"ui[6]": "mode[6] / dac_in[6]",
"ui[7]": "mode[7] / dac_in[7]",
"uo[0]": "r7",
"uo[1]": "g7",
"uo[2]": "b7",
"uo[3]": "vsync",
"uo[4]": "r6",
"uo[5]": "g6",
"uo[6]": "b6",
"uo[7]": "hsync",
"uio[0]": "vblank_out",
"uio[1]": "hblank_out",
"uio[2]": "bias_in[0]",
"uio[3]": "bias_in[1]",
"uio[4]": "bias_in[2]",
"uio[5]": "",
"uio[6]": "",
"uio[7]": "",
"ua[0]": "ra",
"ua[1]": "ga",
"ua[2]": "ba",
"ua[3]": "vbias_red",
"ua[4]": "",
"ua[5]": ""
}
},
{
"macro": "tt_um_arko",
"address": 416,
"title": "Arko",
"author": "Arko",
"description": "Arko",
"clock_hz": 50000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/arkorobotics/ttsky-verilog-arko",
"commit": "fd4767a744a7bf2d9444957c0d5815ec59bc77e9",
"pinout": {
"ui[0]": "in0",
"ui[1]": "in1",
"ui[2]": "in2",
"ui[3]": "in3",
"ui[4]": "in4",
"ui[5]": "in5",
"ui[6]": "in6",
"ui[7]": "in7",
"uo[0]": "out0",
"uo[1]": "out1",
"uo[2]": "out2",
"uo[3]": "out3",
"uo[4]": "out4",
"uo[5]": "out5",
"uo[6]": "out6",
"uo[7]": "out7",
"uio[0]": "io0",
"uio[1]": "io1",
"uio[2]": "io2",
"uio[3]": "io3",
"uio[4]": "io4",
"uio[5]": "io5",
"uio[6]": "io6",
"uio[7]": "io7"
}
},
{
"macro": "tt_um_attention_top",
"address": 137,
"title": "transformer-attention-engine",
"author": "Tarik Ibrahimovic",
"description": "Transformer attention engine with a credit based pipeline",
"clock_hz": 60000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/tarik-ibrahimovic/transformer_attention_engine",
"commit": "e4dd55370780e94d42f7f2c73536f155d1cdf863",
"pinout": {
"ui[0]": "ui_in[0]",
"ui[1]": "ui_in[1]",
"ui[2]": "ui_in[2]",
"ui[3]": "ui_in[3]",
"ui[4]": "ui_in[4]",
"ui[5]": "ui_in[5]",
"ui[6]": "ui_in[6]",
"ui[7]": "ui_in[7]",
"uo[0]": "uo_out[0]",
"uo[1]": "uo_out[1]",
"uo[2]": "uo_out[2]",
"uo[3]": "uo_out[3]",
"uo[4]": "uo_out[4]",
"uo[5]": "uo_out[5]",
"uo[6]": "uo_out[6]",
"uo[7]": "uo_out[7]",
"uio[0]": "uio_out[0]",
"uio[1]": "uio_out[1]",
"uio[2]": "uio_out[2]",
"uio[3]": "uio_out[3]",
"uio[4]": "uio_out[0]",
"uio[5]": "uio_out[1]",
"uio[6]": "uio_out[2]",
"uio[7]": "uio_out[3]"
}
},
{
"macro": "tt_um_axc1271_tinypong",
"address": 553,
"title": "Tiny Pong",
"author": "Andrew Chen",
"description": "VGA Display Driver for Pong Game",
"clock_hz": 25000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/AxC1271/TinyPong",
"commit": "3557be8483a06a8b5281103be251bb6f2f488679",
"pinout": {
"ui[0]": "Paddle Up Button",
"ui[1]": "Paddle Down Button",
"ui[2]": "",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "VGA HSYNC",
"uo[1]": "VGA VSYNC",
"uo[2]": "VGA RED bit 0",
"uo[3]": "VGA RED bit 1",
"uo[4]": "VGA GREEN bit 0",
"uo[5]": "VGA GREEN bit 1",
"uo[6]": "VGA BLUE bit 0",
"uo[7]": "VGA BLUE bit 1",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_b2nch_DreiMann_top",
"address": 489,
"title": "DreiMann",
"author": "Benjamin Lehner",
"description": "DreiMann is a game that requires two dice and can be played in a group of at least three people. It is often used as a party game. This implementation replaces the dice and displays the current move on a seven-segment display.",
"clock_hz": 50000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/b2nch/jku-sky-DreiMann",
"commit": "1a3e3c3e863d0f85485c71086abb235e85fd8243",
"pinout": {
"ui[0]": "roll_dice_1",
"ui[1]": "roll_dice_2",
"ui[2]": "switch_common_cathode_anode_7segmentdisplay",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "segment_0",
"uo[1]": "segment_1",
"uo[2]": "segment_2",
"uo[3]": "segment_3",
"uo[4]": "segment_4",
"uo[5]": "segment_5",
"uo[6]": "segment_6",
"uo[7]": "segment_7",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_baud_rate_cdr",
"address": 487,
"title": "Baud-Rate PAM4 Clock and Data Recovery (CDR)",
"author": "Soumobrata Ghosh",
"description": "A baud-rate PAM4 CDR with Mueller\u2013M\u00fcller phase detector, PI loop filter, and digital DCO.",
"clock_hz": 50000000,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/Soumobrata/Baud_Rate_CDR",
"commit": "3555320dce8fcc67f0356533918a7b0958f5fb91",
"pinout": {
"ui[0]": "DATA[0]",
"ui[1]": "DATA[1]",
"ui[2]": "DATA[2]",
"ui[3]": "DATA[3]",
"ui[4]": "DATA[4]",
"ui[5]": "DATA[5]",
"ui[6]": "DATA[6]",
"ui[7]": "DATA[7]",
"uo[0]": "X[4]",
"uo[1]": "X[5]",
"uo[2]": "X[6]",
"uo[3]": "X[7]",
"uo[4]": "S[0]",
"uo[5]": "S[1]",
"uo[6]": "S[2]",
"uo[7]": "Sample_en",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",
"uio[6]": "",
"uio[7]": ""
}
},
{
"macro": "tt_um_bleeptrack_nn1",
"address": 622,
"title": "Negative Nature #1",
"author": "bleeptrack",
"description": "generative voronoi pattern for negative space in silicon",
"clock_hz": 0,
"tiles": "1x1",
"analog_pins": [],
"repo": "https://github.com/bleeptrack/negative-nature01",
"commit": "cf4f909c1babbf0f65f4d25858071a98a52b5c71",
"pinout": {
"ui[0]": "",
"ui[1]": "",
"ui[2]": "",
"ui[3]": "",
"ui[4]": "",
"ui[5]": "",
"ui[6]": "",
"ui[7]": "",
"uo[0]": "dummy",
"uo[1]": "",
"uo[2]": "",
"uo[3]": "",
"uo[4]": "",
"uo[5]": "",
"uo[6]": "",
"uo[7]": "",
"uio[0]": "",
"uio[1]": "",
"uio[2]": "",
"uio[3]": "",
"uio[4]": "",
"uio[5]": "",