things for today

This commit is contained in:
2026-03-18 09:36:45 -06:00
parent 1422730cc8
commit f51b6edfbf
7 changed files with 200 additions and 4 deletions

88
pygen.ipynb Normal file
View File

@@ -0,0 +1,88 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "21877801",
"metadata": {},
"source": [
"## Python Generator\n",
"\n",
"This python notebook will serve to generate the necessary code to\n",
"generate some things from Spider.\n",
"\n",
"Specifically, it will generate the CPU instructions (currently)."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b0fcd533",
"metadata": {},
"outputs": [],
"source": [
"# setup directories"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b33de8ac",
"metadata": {},
"outputs": [],
"source": [
"# Implement here some kind of \"C++\" printer"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "58645013",
"metadata": {},
"outputs": [],
"source": [
"# read the instruction sheet with pandas"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "452bc76c",
"metadata": {},
"outputs": [],
"source": [
"# well, then export the masks (TODO)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "5aaebef0",
"metadata": {},
"outputs": [],
"source": [
"# print the CPU Instructions"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.13.7"
}
},
"nbformat": 4,
"nbformat_minor": 5
}