aboutsummaryrefslogtreecommitdiffstats
path: root/atk16.egg-info
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2024-02-24 20:30:17 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2024-02-24 20:30:17 +0200
commit6dd1e346d330e662e42dd8bc75d17317223908fd (patch)
treec081b1de90cfc5ca7007a8935e6892aaee03aa56 /atk16.egg-info
parent0a2cf66672364ed555c85682e948cff0b54c8f35 (diff)
Add setup.py, fix bugs
Diffstat (limited to 'atk16.egg-info')
-rw-r--r--atk16.egg-info/PKG-INFO4
-rw-r--r--atk16.egg-info/SOURCES.txt30
-rw-r--r--atk16.egg-info/dependency_links.txt1
-rw-r--r--atk16.egg-info/entry_points.txt3
-rw-r--r--atk16.egg-info/requires.txt1
-rw-r--r--atk16.egg-info/top_level.txt3
6 files changed, 42 insertions, 0 deletions
diff --git a/atk16.egg-info/PKG-INFO b/atk16.egg-info/PKG-INFO
new file mode 100644
index 0000000..193ecdf
--- /dev/null
+++ b/atk16.egg-info/PKG-INFO
@@ -0,0 +1,4 @@
+Metadata-Version: 2.1
+Name: atk16
+Version: 0.1
+Requires-Dist: getch>=1.0
diff --git a/atk16.egg-info/SOURCES.txt b/atk16.egg-info/SOURCES.txt
new file mode 100644
index 0000000..069ea3e
--- /dev/null
+++ b/atk16.egg-info/SOURCES.txt
@@ -0,0 +1,30 @@
+setup.py
+atk16.egg-info/PKG-INFO
+atk16.egg-info/SOURCES.txt
+atk16.egg-info/dependency_links.txt
+atk16.egg-info/entry_points.txt
+atk16.egg-info/requires.txt
+atk16.egg-info/top_level.txt
+atk16_asm/__init__.py
+atk16_asm/asm_eval.py
+atk16_asm/asm_ops.py
+atk16_asm/asm_pass0.py
+atk16_asm/asm_pass1.py
+atk16_asm/asm_pass2.py
+atk16_asm/asm_pass3.py
+atk16_asm/asm_pass4.py
+atk16_asm/assembler.py
+atk16_asm/optimizer.py
+atk16_asm/pad_bin.py
+atk16_asm/parser.py
+atk16_asm/tokenizer.py
+atk16_emu/__init__.py
+atk16_emu/cli.py
+atk16_emu/debugger.py
+atk16_emu/emu.py
+atk16_emu/opcodes.py
+atk16_emu/test/__init__.py
+atk16_emu/test/test_opcode_alr.py
+atk16_emu/test/test_opcode_hlt.py
+test/__init__.py
+test/utils.py \ No newline at end of file
diff --git a/atk16.egg-info/dependency_links.txt b/atk16.egg-info/dependency_links.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/atk16.egg-info/dependency_links.txt
@@ -0,0 +1 @@
+
diff --git a/atk16.egg-info/entry_points.txt b/atk16.egg-info/entry_points.txt
new file mode 100644
index 0000000..543f53b
--- /dev/null
+++ b/atk16.egg-info/entry_points.txt
@@ -0,0 +1,3 @@
+[console_scripts]
+atk16c = atk16_asm.assembler:main
+atk16emu = atk16_emu.cli:main
diff --git a/atk16.egg-info/requires.txt b/atk16.egg-info/requires.txt
new file mode 100644
index 0000000..36f298c
--- /dev/null
+++ b/atk16.egg-info/requires.txt
@@ -0,0 +1 @@
+getch>=1.0
diff --git a/atk16.egg-info/top_level.txt b/atk16.egg-info/top_level.txt
new file mode 100644
index 0000000..b7ba0e4
--- /dev/null
+++ b/atk16.egg-info/top_level.txt
@@ -0,0 +1,3 @@
+atk16_asm
+atk16_emu
+test