├── .gitignore ├── LICENSE ├── README.md ├── blocks ├── Bus │ ├── stdin-stdout-adaptor-2.ice │ ├── stdin-stdout-adaptor.ice │ ├── stdin │ │ ├── stdin-enable.ice │ │ ├── stdin-joiner.ice │ │ ├── stdin-mixer.ice │ │ └── stdin-spliter.ice │ └── stdout │ │ ├── adder-data-tic.ice │ │ ├── joiner-2-data-tic.ice │ │ ├── next-in.ice │ │ ├── next-out.ice │ │ └── spliter-2-data-tic.ice ├── Debug │ ├── Hterm-toggle.ice │ ├── Memory │ │ └── 02-bits │ │ │ └── Print-ram-2x1-bit.ice │ ├── Print-str.ice │ ├── PrintLn-Bin16.ice │ ├── PrintLn-Char.ice │ ├── PrintLn-Hex8-sysclk.ice │ ├── PrintLn-OK.ice │ ├── PrintLn-Uint8-sysclk.ice │ ├── PrintLn-base-4.ice │ ├── PrintLn-bit.ice │ ├── hterm-bit-stdout.ice │ ├── hterm-bit.ice │ ├── hterm-bitx2-stdout.ice │ ├── hterm-bitx2.ice │ └── virtual-toggle-button.ice ├── Device │ ├── Bufferx1.ice │ ├── Serial-rx.ice │ ├── stdin-bin-keyboardX4.ice │ ├── stdin-serial.ice │ ├── stdout-LEDs-8-rst.ice │ ├── stdout-LEDs-8.ice │ ├── stdout-serial-buffer.ice │ ├── stdout-serial-sysclk.ice │ └── stdout-serial.ice └── Others │ ├── Filters │ └── Printable-nl-del.ice │ ├── Getc │ ├── Getc-bit.ice │ ├── Getc-char.ice │ └── Getc-printable-char.ice │ ├── InputLn │ ├── inputln-2xchars-echo.ice │ ├── inputln-bit-echo.ice │ ├── inputln-bitx2-echo.ice │ └── inputln-char-echo.ice │ ├── Input_ │ ├── input-bit-echo.ice │ ├── input-bit.ice │ ├── input-printable-char-echo.ice │ └── input-printable-char.ice │ ├── Print │ ├── Print-bin │ │ ├── Print-base4-bin.ice │ │ ├── Print-bin-03-bits.ice │ │ ├── Print-bin-04-bits.ice │ │ ├── Print-bin-08-bits.ice │ │ └── Print-bin-16-bits.ice │ ├── Print-hex │ │ ├── Print-hex-12bits.ice │ │ ├── Print-hex-16bits.ice │ │ ├── Print-hex-32bits.ice │ │ └── Print-hex-8bits.ice │ ├── Print-int │ │ ├── Print-int12.ice │ │ ├── Print-int16.ice │ │ ├── Print-int4.ice │ │ └── Print-int8.ice │ ├── Print-strl-delay │ │ └── Print-delay-str-0064.ice │ ├── Print-uint │ │ ├── Print-uint12.ice │ │ ├── Print-uint16.ice │ │ ├── Print-uint4.ice │ │ └── Print-uint8.ice │ ├── asc │ │ ├── Print-asc-0002.ice │ │ ├── Print-asc-0004.ice │ │ ├── Print-asc-0008.ice │ │ ├── Print-asc-0016.ice │ │ ├── Print-asc-0032.ice │ │ ├── Print-asc-0064.ice │ │ ├── Print-asc-0128.ice │ │ └── Print-asc-0256.ice │ └── print-str │ │ ├── Print-str-0002.ice │ │ ├── Print-str-0004.ice │ │ ├── Print-str-0008.ice │ │ ├── Print-str-0016.ice │ │ ├── Print-str-0032.ice │ │ ├── Print-str-0064.ice │ │ ├── Print-str-0128.ice │ │ └── Print-str-0256.ice │ ├── PrintLn │ ├── PrintLn-BitVar.ice │ ├── PrintLn-OK.ice │ ├── PrintLn-base-4.ice │ ├── PrintLn-bit.ice │ └── PrintLn-char.ice │ ├── Putc │ ├── putc-base4.ice │ ├── putc-bit.ice │ ├── putc-char-const.ice │ ├── putc-char.ice │ └── putc-hex.ice │ ├── Regs │ └── 08-bits-shift-right-load-rst.ice │ └── Syntax │ ├── Syntax-ELSE.ice │ ├── Syntax-EOL.ice │ ├── Syntax-bit.ice │ └── Syntax-char.ice ├── examples ├── Debug │ ├── 2x1-bits-memory-test.ice │ ├── Base4-counter.ice │ ├── Hello-world.ice │ ├── Hterm-toggle-LED.ice │ ├── Mini-local-input-console-test-01.ice │ ├── Mini-local-input-console-test-02.ice │ ├── hterm-bit-stdout-test-1-2x1-memory.ice │ ├── hterm-bit-stdout-test-2-one-element-stack.ice │ ├── hterm-bit-stdout-test-3-two-elements-stack.ice │ ├── hterm-bit-test-1.ice │ ├── hterm-bitx2-test-1-LEDs.ice │ ├── ok-button.ice │ └── virtual-toggle-button-test.ice ├── General │ ├── 01-print-matrix.ice │ ├── 02-Button-state-ANSI.ice │ ├── 03-cowsay-bin.ice │ ├── 04-NOT-truth-table.ice │ ├── 05-ram-2x1-bit-test-term.ice │ ├── 06-Hcalc-acumulator.ice │ ├── 07-Hcalc-terminal.ice │ ├── 08-Hcalc-expresion.ice │ ├── 09-Hcalc-stack.ice │ ├── 10-Hcalc-two-elements-stack.ice │ ├── 11-Hcalc-2bits-acumulator.ice │ └── 12-Ansi-bouncing-ball.ice ├── Getc │ ├── getc-bit-01.ice │ ├── getc-bit-02.ice │ ├── getc-bit-03.ice │ ├── getc-char-01.ice │ ├── getc-char-02.ice │ ├── getc-char-03.ice │ └── getc-pritnable-char-01.ice ├── InputLn │ ├── inputln-bit-test-01-led-on-off.ice │ ├── inputln-bitx2-test-01-LEDs.ice │ ├── inputln-char-test-01-LEDs.ice │ └── inputln-charx2-cmd-echo.ice ├── Input_ │ ├── Input-bit-01.ice │ ├── Input-bit-02.ice │ ├── Input-bit-03.ice │ ├── Input-bit-04.ice │ ├── Input-bit-05.ice │ ├── input-printable-char-01.ice │ └── input-printable-char-echo-01.ice ├── Input_echo │ ├── 01-input-bit-button.ice │ ├── 02-input-bit-hterm-01.ice │ └── 03-input-bit-hterm-02.ice ├── Multi-board │ ├── Alhambra-II │ │ └── Hello-world.ice │ ├── Blackice-I │ │ └── Hello-world.ice │ ├── Icestick │ │ └── Hello-world.ice │ ├── Lattice-Breakout-board │ │ └── Hello-world.ice │ ├── Nandland-Go-Board │ │ └── Hello-world.ice │ ├── TinyFPGA-BX │ │ └── Hello-world.ice │ └── iCEBreaker │ │ └── Hello-world.ice ├── Print │ ├── Print-01-two-buttons.ice │ ├── Print-02-two-buttons-ASCII-art.ice │ ├── Print-03-menu.ice │ ├── Print-04-str-two-buttons.ice │ ├── Print-base4-bin-01-counter.ice │ ├── Print-base4-bin-02-two-buttons.ice │ ├── Print-hex-01-Button-counter.ice │ ├── Print-hex-12-01-Button-table.ice │ ├── Print-hex-16-01-Button-table.ice │ ├── Print-int │ │ ├── print-int12-test-01.ice │ │ ├── print-int16-test-01.ice │ │ └── print-int8-test-01.ice │ ├── Print-uint12-test-01.ice │ ├── Print-uint16-test-01.ice │ ├── Print-uint4-01-button-counter.ice │ ├── Print-uint4-02-count.ice │ ├── Print-uint8-test-01.ice │ ├── Test │ │ ├── asc │ │ │ ├── Test-print-asc-02.ice │ │ │ ├── Test-print-asc-04.ice │ │ │ ├── Test-print-asc-08.ice │ │ │ ├── Test-print-asc-128.ice │ │ │ ├── Test-print-asc-16.ice │ │ │ ├── Test-print-asc-256.ice │ │ │ ├── Test-print-asc-32.ice │ │ │ └── Test-print-asc-64.ice │ │ └── str │ │ │ ├── Test-print-str-02.ice │ │ │ ├── Test-print-str-04.ice │ │ │ ├── Test-print-str-08.ice │ │ │ ├── Test-print-str-128.ice │ │ │ ├── Test-print-str-16.ice │ │ │ ├── Test-print-str-256.ice │ │ │ ├── Test-print-str-32.ice │ │ │ └── Test-print-str-64.ice │ └── print-int4-test-01.ice ├── PrintLn │ ├── PrintLn-BitVar-01.ice │ ├── PrintLn-base4-01-counter.ice │ ├── PrintLn-bit-01-button.ice │ └── Println-ok-01-button.ice ├── Putc │ ├── Putc-Base-4 │ │ └── putc-base4-01.ice │ ├── Putc-bit │ │ ├── putc-bit-01.ice │ │ ├── putc-bit-02.ice │ │ ├── putc-bit-03-button-changed.ice │ │ ├── putc-bit-04-two-buttons.ice │ │ ├── putc-bit-05-two-buttons2.ice │ │ ├── putc-bit-06-AND-test.ice │ │ └── putc-bit-07-AND-test2.ice │ ├── Putc-char │ │ ├── putc-char-01.ice │ │ ├── putc-char-02.ice │ │ ├── putc-char-03.ice │ │ ├── putc-char-04.ice │ │ ├── putc-char-05.ice │ │ ├── putc-char-06.ice │ │ ├── putc-char-07.ice │ │ └── putc-char-08.ice │ └── Putc-hex │ │ └── 01-putc-hex-test1.ice ├── Syntax │ └── Syntax-char-toggle-led.ice └── stdin-stdout │ ├── stdout-LEDx8-test-01.ice │ ├── stdout-LEDx8-test-02.ice │ ├── stdout-LEDx8-test-03.ice │ ├── stdout-LEDx8-test-04.ice │ └── stdout-LEDx8-test-05.ice ├── locale └── translation.js ├── package.json └── wiki ├── Hello-world ├── Alhambra-II │ ├── Hello-world-01.png │ └── Hello-world-02.png ├── BlackIce-I │ ├── BlackIce-Hello-world-01.png │ └── BlackIce-Hello-world-02.png ├── Icestick │ ├── Icestick-Hello-world-01.png │ └── Icestick-Hello-world-02.png ├── Nandland-go-board │ ├── Go-board-Hello-word-01.png │ └── Go-board-Hello-word-02.png ├── TinyFPGA-BX │ ├── TinyFPGA-Hello-world-01.png │ └── TinyFPGA-Hello-world-02.png ├── iCE40-Breakout │ ├── Hello-world-01.png │ └── Hello-world-02.png └── iCEBreaker │ ├── iCEBreaker-Hello-world-01.png │ └── iCEBreaker-Hello-world-02.png ├── icestudio-stdio-collection-github.png ├── icestudio-stdio-logo.png └── src ├── icestudio-stdio-collection-github.svg └── icestudio-stdio-collection.svg /.gitignore: -------------------------------------------------------------------------------- 1 | ice-build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/README.md -------------------------------------------------------------------------------- /blocks/Bus/stdin-stdout-adaptor-2.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdin-stdout-adaptor-2.ice -------------------------------------------------------------------------------- /blocks/Bus/stdin-stdout-adaptor.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdin-stdout-adaptor.ice -------------------------------------------------------------------------------- /blocks/Bus/stdin/stdin-enable.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdin/stdin-enable.ice -------------------------------------------------------------------------------- /blocks/Bus/stdin/stdin-joiner.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdin/stdin-joiner.ice -------------------------------------------------------------------------------- /blocks/Bus/stdin/stdin-mixer.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdin/stdin-mixer.ice -------------------------------------------------------------------------------- /blocks/Bus/stdin/stdin-spliter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdin/stdin-spliter.ice -------------------------------------------------------------------------------- /blocks/Bus/stdout/adder-data-tic.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdout/adder-data-tic.ice -------------------------------------------------------------------------------- /blocks/Bus/stdout/joiner-2-data-tic.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdout/joiner-2-data-tic.ice -------------------------------------------------------------------------------- /blocks/Bus/stdout/next-in.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdout/next-in.ice -------------------------------------------------------------------------------- /blocks/Bus/stdout/next-out.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdout/next-out.ice -------------------------------------------------------------------------------- /blocks/Bus/stdout/spliter-2-data-tic.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Bus/stdout/spliter-2-data-tic.ice -------------------------------------------------------------------------------- /blocks/Debug/Hterm-toggle.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/Hterm-toggle.ice -------------------------------------------------------------------------------- /blocks/Debug/Memory/02-bits/Print-ram-2x1-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/Memory/02-bits/Print-ram-2x1-bit.ice -------------------------------------------------------------------------------- /blocks/Debug/Print-str.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/Print-str.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-Bin16.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-Bin16.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-Char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-Char.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-Hex8-sysclk.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-Hex8-sysclk.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-OK.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-OK.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-Uint8-sysclk.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-Uint8-sysclk.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-base-4.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-base-4.ice -------------------------------------------------------------------------------- /blocks/Debug/PrintLn-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/PrintLn-bit.ice -------------------------------------------------------------------------------- /blocks/Debug/hterm-bit-stdout.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/hterm-bit-stdout.ice -------------------------------------------------------------------------------- /blocks/Debug/hterm-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/hterm-bit.ice -------------------------------------------------------------------------------- /blocks/Debug/hterm-bitx2-stdout.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/hterm-bitx2-stdout.ice -------------------------------------------------------------------------------- /blocks/Debug/hterm-bitx2.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/hterm-bitx2.ice -------------------------------------------------------------------------------- /blocks/Debug/virtual-toggle-button.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Debug/virtual-toggle-button.ice -------------------------------------------------------------------------------- /blocks/Device/Bufferx1.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/Bufferx1.ice -------------------------------------------------------------------------------- /blocks/Device/Serial-rx.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/Serial-rx.ice -------------------------------------------------------------------------------- /blocks/Device/stdin-bin-keyboardX4.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdin-bin-keyboardX4.ice -------------------------------------------------------------------------------- /blocks/Device/stdin-serial.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdin-serial.ice -------------------------------------------------------------------------------- /blocks/Device/stdout-LEDs-8-rst.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdout-LEDs-8-rst.ice -------------------------------------------------------------------------------- /blocks/Device/stdout-LEDs-8.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdout-LEDs-8.ice -------------------------------------------------------------------------------- /blocks/Device/stdout-serial-buffer.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdout-serial-buffer.ice -------------------------------------------------------------------------------- /blocks/Device/stdout-serial-sysclk.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdout-serial-sysclk.ice -------------------------------------------------------------------------------- /blocks/Device/stdout-serial.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Device/stdout-serial.ice -------------------------------------------------------------------------------- /blocks/Others/Filters/Printable-nl-del.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Filters/Printable-nl-del.ice -------------------------------------------------------------------------------- /blocks/Others/Getc/Getc-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Getc/Getc-bit.ice -------------------------------------------------------------------------------- /blocks/Others/Getc/Getc-char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Getc/Getc-char.ice -------------------------------------------------------------------------------- /blocks/Others/Getc/Getc-printable-char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Getc/Getc-printable-char.ice -------------------------------------------------------------------------------- /blocks/Others/InputLn/inputln-2xchars-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/InputLn/inputln-2xchars-echo.ice -------------------------------------------------------------------------------- /blocks/Others/InputLn/inputln-bit-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/InputLn/inputln-bit-echo.ice -------------------------------------------------------------------------------- /blocks/Others/InputLn/inputln-bitx2-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/InputLn/inputln-bitx2-echo.ice -------------------------------------------------------------------------------- /blocks/Others/InputLn/inputln-char-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/InputLn/inputln-char-echo.ice -------------------------------------------------------------------------------- /blocks/Others/Input_/input-bit-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Input_/input-bit-echo.ice -------------------------------------------------------------------------------- /blocks/Others/Input_/input-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Input_/input-bit.ice -------------------------------------------------------------------------------- /blocks/Others/Input_/input-printable-char-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Input_/input-printable-char-echo.ice -------------------------------------------------------------------------------- /blocks/Others/Input_/input-printable-char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Input_/input-printable-char.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-bin/Print-base4-bin.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-bin/Print-base4-bin.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-bin/Print-bin-03-bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-bin/Print-bin-03-bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-bin/Print-bin-04-bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-bin/Print-bin-04-bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-bin/Print-bin-08-bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-bin/Print-bin-08-bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-bin/Print-bin-16-bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-bin/Print-bin-16-bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-hex/Print-hex-12bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-hex/Print-hex-12bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-hex/Print-hex-16bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-hex/Print-hex-16bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-hex/Print-hex-32bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-hex/Print-hex-32bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-hex/Print-hex-8bits.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-hex/Print-hex-8bits.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-int/Print-int12.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-int/Print-int12.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-int/Print-int16.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-int/Print-int16.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-int/Print-int4.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-int/Print-int4.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-int/Print-int8.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-int/Print-int8.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-strl-delay/Print-delay-str-0064.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-strl-delay/Print-delay-str-0064.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-uint/Print-uint12.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-uint/Print-uint12.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-uint/Print-uint16.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-uint/Print-uint16.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-uint/Print-uint4.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-uint/Print-uint4.ice -------------------------------------------------------------------------------- /blocks/Others/Print/Print-uint/Print-uint8.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/Print-uint/Print-uint8.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0002.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0002.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0004.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0004.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0008.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0008.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0016.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0016.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0032.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0032.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0064.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0064.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0128.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0128.ice -------------------------------------------------------------------------------- /blocks/Others/Print/asc/Print-asc-0256.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/asc/Print-asc-0256.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0002.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0002.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0004.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0004.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0008.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0008.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0016.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0016.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0032.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0032.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0064.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0064.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0128.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0128.ice -------------------------------------------------------------------------------- /blocks/Others/Print/print-str/Print-str-0256.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Print/print-str/Print-str-0256.ice -------------------------------------------------------------------------------- /blocks/Others/PrintLn/PrintLn-BitVar.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/PrintLn/PrintLn-BitVar.ice -------------------------------------------------------------------------------- /blocks/Others/PrintLn/PrintLn-OK.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/PrintLn/PrintLn-OK.ice -------------------------------------------------------------------------------- /blocks/Others/PrintLn/PrintLn-base-4.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/PrintLn/PrintLn-base-4.ice -------------------------------------------------------------------------------- /blocks/Others/PrintLn/PrintLn-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/PrintLn/PrintLn-bit.ice -------------------------------------------------------------------------------- /blocks/Others/PrintLn/PrintLn-char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/PrintLn/PrintLn-char.ice -------------------------------------------------------------------------------- /blocks/Others/Putc/putc-base4.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Putc/putc-base4.ice -------------------------------------------------------------------------------- /blocks/Others/Putc/putc-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Putc/putc-bit.ice -------------------------------------------------------------------------------- /blocks/Others/Putc/putc-char-const.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Putc/putc-char-const.ice -------------------------------------------------------------------------------- /blocks/Others/Putc/putc-char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Putc/putc-char.ice -------------------------------------------------------------------------------- /blocks/Others/Putc/putc-hex.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Putc/putc-hex.ice -------------------------------------------------------------------------------- /blocks/Others/Regs/08-bits-shift-right-load-rst.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Regs/08-bits-shift-right-load-rst.ice -------------------------------------------------------------------------------- /blocks/Others/Syntax/Syntax-ELSE.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Syntax/Syntax-ELSE.ice -------------------------------------------------------------------------------- /blocks/Others/Syntax/Syntax-EOL.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Syntax/Syntax-EOL.ice -------------------------------------------------------------------------------- /blocks/Others/Syntax/Syntax-bit.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Syntax/Syntax-bit.ice -------------------------------------------------------------------------------- /blocks/Others/Syntax/Syntax-char.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/blocks/Others/Syntax/Syntax-char.ice -------------------------------------------------------------------------------- /examples/Debug/2x1-bits-memory-test.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/2x1-bits-memory-test.ice -------------------------------------------------------------------------------- /examples/Debug/Base4-counter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/Base4-counter.ice -------------------------------------------------------------------------------- /examples/Debug/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/Hello-world.ice -------------------------------------------------------------------------------- /examples/Debug/Hterm-toggle-LED.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/Hterm-toggle-LED.ice -------------------------------------------------------------------------------- /examples/Debug/Mini-local-input-console-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/Mini-local-input-console-test-01.ice -------------------------------------------------------------------------------- /examples/Debug/Mini-local-input-console-test-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/Mini-local-input-console-test-02.ice -------------------------------------------------------------------------------- /examples/Debug/hterm-bit-stdout-test-1-2x1-memory.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/hterm-bit-stdout-test-1-2x1-memory.ice -------------------------------------------------------------------------------- /examples/Debug/hterm-bit-stdout-test-2-one-element-stack.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/hterm-bit-stdout-test-2-one-element-stack.ice -------------------------------------------------------------------------------- /examples/Debug/hterm-bit-stdout-test-3-two-elements-stack.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/hterm-bit-stdout-test-3-two-elements-stack.ice -------------------------------------------------------------------------------- /examples/Debug/hterm-bit-test-1.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/hterm-bit-test-1.ice -------------------------------------------------------------------------------- /examples/Debug/hterm-bitx2-test-1-LEDs.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/hterm-bitx2-test-1-LEDs.ice -------------------------------------------------------------------------------- /examples/Debug/ok-button.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/ok-button.ice -------------------------------------------------------------------------------- /examples/Debug/virtual-toggle-button-test.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Debug/virtual-toggle-button-test.ice -------------------------------------------------------------------------------- /examples/General/01-print-matrix.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/01-print-matrix.ice -------------------------------------------------------------------------------- /examples/General/02-Button-state-ANSI.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/02-Button-state-ANSI.ice -------------------------------------------------------------------------------- /examples/General/03-cowsay-bin.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/03-cowsay-bin.ice -------------------------------------------------------------------------------- /examples/General/04-NOT-truth-table.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/04-NOT-truth-table.ice -------------------------------------------------------------------------------- /examples/General/05-ram-2x1-bit-test-term.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/05-ram-2x1-bit-test-term.ice -------------------------------------------------------------------------------- /examples/General/06-Hcalc-acumulator.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/06-Hcalc-acumulator.ice -------------------------------------------------------------------------------- /examples/General/07-Hcalc-terminal.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/07-Hcalc-terminal.ice -------------------------------------------------------------------------------- /examples/General/08-Hcalc-expresion.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/08-Hcalc-expresion.ice -------------------------------------------------------------------------------- /examples/General/09-Hcalc-stack.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/09-Hcalc-stack.ice -------------------------------------------------------------------------------- /examples/General/10-Hcalc-two-elements-stack.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/10-Hcalc-two-elements-stack.ice -------------------------------------------------------------------------------- /examples/General/11-Hcalc-2bits-acumulator.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/11-Hcalc-2bits-acumulator.ice -------------------------------------------------------------------------------- /examples/General/12-Ansi-bouncing-ball.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/General/12-Ansi-bouncing-ball.ice -------------------------------------------------------------------------------- /examples/Getc/getc-bit-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-bit-01.ice -------------------------------------------------------------------------------- /examples/Getc/getc-bit-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-bit-02.ice -------------------------------------------------------------------------------- /examples/Getc/getc-bit-03.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-bit-03.ice -------------------------------------------------------------------------------- /examples/Getc/getc-char-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-char-01.ice -------------------------------------------------------------------------------- /examples/Getc/getc-char-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-char-02.ice -------------------------------------------------------------------------------- /examples/Getc/getc-char-03.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-char-03.ice -------------------------------------------------------------------------------- /examples/Getc/getc-pritnable-char-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Getc/getc-pritnable-char-01.ice -------------------------------------------------------------------------------- /examples/InputLn/inputln-bit-test-01-led-on-off.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/InputLn/inputln-bit-test-01-led-on-off.ice -------------------------------------------------------------------------------- /examples/InputLn/inputln-bitx2-test-01-LEDs.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/InputLn/inputln-bitx2-test-01-LEDs.ice -------------------------------------------------------------------------------- /examples/InputLn/inputln-char-test-01-LEDs.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/InputLn/inputln-char-test-01-LEDs.ice -------------------------------------------------------------------------------- /examples/InputLn/inputln-charx2-cmd-echo.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/InputLn/inputln-charx2-cmd-echo.ice -------------------------------------------------------------------------------- /examples/Input_/Input-bit-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/Input-bit-01.ice -------------------------------------------------------------------------------- /examples/Input_/Input-bit-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/Input-bit-02.ice -------------------------------------------------------------------------------- /examples/Input_/Input-bit-03.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/Input-bit-03.ice -------------------------------------------------------------------------------- /examples/Input_/Input-bit-04.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/Input-bit-04.ice -------------------------------------------------------------------------------- /examples/Input_/Input-bit-05.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/Input-bit-05.ice -------------------------------------------------------------------------------- /examples/Input_/input-printable-char-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/input-printable-char-01.ice -------------------------------------------------------------------------------- /examples/Input_/input-printable-char-echo-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_/input-printable-char-echo-01.ice -------------------------------------------------------------------------------- /examples/Input_echo/01-input-bit-button.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_echo/01-input-bit-button.ice -------------------------------------------------------------------------------- /examples/Input_echo/02-input-bit-hterm-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_echo/02-input-bit-hterm-01.ice -------------------------------------------------------------------------------- /examples/Input_echo/03-input-bit-hterm-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Input_echo/03-input-bit-hterm-02.ice -------------------------------------------------------------------------------- /examples/Multi-board/Alhambra-II/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/Alhambra-II/Hello-world.ice -------------------------------------------------------------------------------- /examples/Multi-board/Blackice-I/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/Blackice-I/Hello-world.ice -------------------------------------------------------------------------------- /examples/Multi-board/Icestick/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/Icestick/Hello-world.ice -------------------------------------------------------------------------------- /examples/Multi-board/Lattice-Breakout-board/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/Lattice-Breakout-board/Hello-world.ice -------------------------------------------------------------------------------- /examples/Multi-board/Nandland-Go-Board/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/Nandland-Go-Board/Hello-world.ice -------------------------------------------------------------------------------- /examples/Multi-board/TinyFPGA-BX/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/TinyFPGA-BX/Hello-world.ice -------------------------------------------------------------------------------- /examples/Multi-board/iCEBreaker/Hello-world.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Multi-board/iCEBreaker/Hello-world.ice -------------------------------------------------------------------------------- /examples/Print/Print-01-two-buttons.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-01-two-buttons.ice -------------------------------------------------------------------------------- /examples/Print/Print-02-two-buttons-ASCII-art.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-02-two-buttons-ASCII-art.ice -------------------------------------------------------------------------------- /examples/Print/Print-03-menu.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-03-menu.ice -------------------------------------------------------------------------------- /examples/Print/Print-04-str-two-buttons.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-04-str-two-buttons.ice -------------------------------------------------------------------------------- /examples/Print/Print-base4-bin-01-counter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-base4-bin-01-counter.ice -------------------------------------------------------------------------------- /examples/Print/Print-base4-bin-02-two-buttons.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-base4-bin-02-two-buttons.ice -------------------------------------------------------------------------------- /examples/Print/Print-hex-01-Button-counter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-hex-01-Button-counter.ice -------------------------------------------------------------------------------- /examples/Print/Print-hex-12-01-Button-table.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-hex-12-01-Button-table.ice -------------------------------------------------------------------------------- /examples/Print/Print-hex-16-01-Button-table.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-hex-16-01-Button-table.ice -------------------------------------------------------------------------------- /examples/Print/Print-int/print-int12-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-int/print-int12-test-01.ice -------------------------------------------------------------------------------- /examples/Print/Print-int/print-int16-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-int/print-int16-test-01.ice -------------------------------------------------------------------------------- /examples/Print/Print-int/print-int8-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-int/print-int8-test-01.ice -------------------------------------------------------------------------------- /examples/Print/Print-uint12-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-uint12-test-01.ice -------------------------------------------------------------------------------- /examples/Print/Print-uint16-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-uint16-test-01.ice -------------------------------------------------------------------------------- /examples/Print/Print-uint4-01-button-counter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-uint4-01-button-counter.ice -------------------------------------------------------------------------------- /examples/Print/Print-uint4-02-count.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-uint4-02-count.ice -------------------------------------------------------------------------------- /examples/Print/Print-uint8-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Print-uint8-test-01.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-02.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-04.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-04.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-08.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-08.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-128.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-128.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-16.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-16.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-256.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-256.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-32.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-32.ice -------------------------------------------------------------------------------- /examples/Print/Test/asc/Test-print-asc-64.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/asc/Test-print-asc-64.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-02.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-04.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-04.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-08.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-08.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-128.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-128.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-16.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-16.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-256.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-256.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-32.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-32.ice -------------------------------------------------------------------------------- /examples/Print/Test/str/Test-print-str-64.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/Test/str/Test-print-str-64.ice -------------------------------------------------------------------------------- /examples/Print/print-int4-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Print/print-int4-test-01.ice -------------------------------------------------------------------------------- /examples/PrintLn/PrintLn-BitVar-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/PrintLn/PrintLn-BitVar-01.ice -------------------------------------------------------------------------------- /examples/PrintLn/PrintLn-base4-01-counter.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/PrintLn/PrintLn-base4-01-counter.ice -------------------------------------------------------------------------------- /examples/PrintLn/PrintLn-bit-01-button.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/PrintLn/PrintLn-bit-01-button.ice -------------------------------------------------------------------------------- /examples/PrintLn/Println-ok-01-button.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/PrintLn/Println-ok-01-button.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-Base-4/putc-base4-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-Base-4/putc-base4-01.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-01.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-02.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-03-button-changed.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-03-button-changed.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-04-two-buttons.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-04-two-buttons.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-05-two-buttons2.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-05-two-buttons2.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-06-AND-test.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-06-AND-test.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-bit/putc-bit-07-AND-test2.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-bit/putc-bit-07-AND-test2.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-01.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-02.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-03.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-03.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-04.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-04.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-05.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-05.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-06.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-06.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-07.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-07.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-char/putc-char-08.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-char/putc-char-08.ice -------------------------------------------------------------------------------- /examples/Putc/Putc-hex/01-putc-hex-test1.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Putc/Putc-hex/01-putc-hex-test1.ice -------------------------------------------------------------------------------- /examples/Syntax/Syntax-char-toggle-led.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/Syntax/Syntax-char-toggle-led.ice -------------------------------------------------------------------------------- /examples/stdin-stdout/stdout-LEDx8-test-01.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/stdin-stdout/stdout-LEDx8-test-01.ice -------------------------------------------------------------------------------- /examples/stdin-stdout/stdout-LEDx8-test-02.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/stdin-stdout/stdout-LEDx8-test-02.ice -------------------------------------------------------------------------------- /examples/stdin-stdout/stdout-LEDx8-test-03.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/stdin-stdout/stdout-LEDx8-test-03.ice -------------------------------------------------------------------------------- /examples/stdin-stdout/stdout-LEDx8-test-04.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/stdin-stdout/stdout-LEDx8-test-04.ice -------------------------------------------------------------------------------- /examples/stdin-stdout/stdout-LEDx8-test-05.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/examples/stdin-stdout/stdout-LEDx8-test-05.ice -------------------------------------------------------------------------------- /locale/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/locale/translation.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/package.json -------------------------------------------------------------------------------- /wiki/Hello-world/Alhambra-II/Hello-world-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/Alhambra-II/Hello-world-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/Alhambra-II/Hello-world-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/Alhambra-II/Hello-world-02.png -------------------------------------------------------------------------------- /wiki/Hello-world/BlackIce-I/BlackIce-Hello-world-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/BlackIce-I/BlackIce-Hello-world-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/BlackIce-I/BlackIce-Hello-world-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/BlackIce-I/BlackIce-Hello-world-02.png -------------------------------------------------------------------------------- /wiki/Hello-world/Icestick/Icestick-Hello-world-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/Icestick/Icestick-Hello-world-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/Icestick/Icestick-Hello-world-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/Icestick/Icestick-Hello-world-02.png -------------------------------------------------------------------------------- /wiki/Hello-world/Nandland-go-board/Go-board-Hello-word-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/Nandland-go-board/Go-board-Hello-word-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/Nandland-go-board/Go-board-Hello-word-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/Nandland-go-board/Go-board-Hello-word-02.png -------------------------------------------------------------------------------- /wiki/Hello-world/TinyFPGA-BX/TinyFPGA-Hello-world-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/TinyFPGA-BX/TinyFPGA-Hello-world-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/TinyFPGA-BX/TinyFPGA-Hello-world-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/TinyFPGA-BX/TinyFPGA-Hello-world-02.png -------------------------------------------------------------------------------- /wiki/Hello-world/iCE40-Breakout/Hello-world-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/iCE40-Breakout/Hello-world-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/iCE40-Breakout/Hello-world-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/iCE40-Breakout/Hello-world-02.png -------------------------------------------------------------------------------- /wiki/Hello-world/iCEBreaker/iCEBreaker-Hello-world-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/iCEBreaker/iCEBreaker-Hello-world-01.png -------------------------------------------------------------------------------- /wiki/Hello-world/iCEBreaker/iCEBreaker-Hello-world-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/Hello-world/iCEBreaker/iCEBreaker-Hello-world-02.png -------------------------------------------------------------------------------- /wiki/icestudio-stdio-collection-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/icestudio-stdio-collection-github.png -------------------------------------------------------------------------------- /wiki/icestudio-stdio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/icestudio-stdio-logo.png -------------------------------------------------------------------------------- /wiki/src/icestudio-stdio-collection-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/src/icestudio-stdio-collection-github.svg -------------------------------------------------------------------------------- /wiki/src/icestudio-stdio-collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPGAwars/Collection-stdio/HEAD/wiki/src/icestudio-stdio-collection.svg --------------------------------------------------------------------------------