Web-Ide mit aufgenommen

This commit is contained in:
Riwoldt
2026-04-09 14:14:56 +02:00
parent 64816c45cc
commit 15cfaf332d
489 changed files with 186891 additions and 0 deletions
@@ -0,0 +1,17 @@
export const hdl = `// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/05/Keyboard.hdl
/**
* The keyboard (memory map).
* Outputs the character code of the currently pressed key,
* or 0 if no key is pressed.
*
* This built-in implementation has a visualization side effect.
*/
CHIP Keyboard {
OUT out[16];
PARTS:
BUILTIN Keyboard;
}`;