Init Push

This commit is contained in:
2026-04-19 16:14:05 +08:00
commit 5b6bd1ac23
54 changed files with 80296 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
{
"kind": "truth_table",
"inputs": [
"a",
"b"
],
"outputs": [
"f"
],
"cases": [
{
"name": "00",
"in": {
"a": 0,
"b": 0
},
"out": {
"f": 0
}
},
{
"name": "01",
"in": {
"a": 0,
"b": 1
},
"out": {
"f": 0
}
},
{
"name": "10",
"in": {
"a": 1,
"b": 0
},
"out": {
"f": 0
}
},
{
"name": "11",
"in": {
"a": 1,
"b": 1
},
"out": {
"f": 1
}
}
]
}