Skip to content

Commit 89a4c25

Browse files
committed
Use modulepack.lua
1 parent 32eef9b commit 89a4c25

27 files changed

Lines changed: 360 additions & 360 deletions

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "TPT-Script-Manager"]
2+
path = TPT-Script-Manager
3+
url = https://github.com/The-Powder-Toy/TPT-Script-Manager

TPT-Script-Manager

Submodule TPT-Script-Manager added at dccc72f

modulepack.conf

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
tptasm
2+
tptasm.archs
3+
tptasm.archs.a728d28
4+
tptasm.archs.armatoste
5+
tptasm.archs.b29k1qs60
6+
tptasm.archs.hacks
7+
tptasm.archs.i8m7d28s
8+
tptasm.archs.maps
9+
tptasm.archs.micro21
10+
tptasm.archs.ptp7
11+
tptasm.archs.r2
12+
tptasm.archs.r3
13+
tptasm.config
14+
tptasm.detect
15+
tptasm.emit
16+
tptasm.evaluate
17+
tptasm.opcode
18+
tptasm.preprocess
19+
tptasm.printf
20+
tptasm.resolve
21+
tptasm.tokenise
22+
tptasm.utility
23+
tptasm.xbit32

src/main.lua

Lines changed: 0 additions & 298 deletions
This file was deleted.
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
local config = require("config")
2-
local opcode = require("opcode")
3-
local detect = require("detect")
4-
local xbit32 = require("xbit32")
5-
local hacks = require("archs.hacks")
1+
local printf = require("tptasm.printf")
2+
local config = require("tptasm.config")
3+
local opcode = require("tptasm.opcode")
4+
local detect = require("tptasm.detect")
5+
local xbit32 = require("tptasm.xbit32")
6+
local hacks = require("tptasm.archs.hacks")
67

78
local includes = {
89
["common"] = ([==[
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
local config = require("config")
2-
local opcode = require("opcode")
3-
local detect = require("detect")
1+
local printf = require("tptasm.printf")
2+
local config = require("tptasm.config")
3+
local opcode = require("tptasm.opcode")
4+
local detect = require("tptasm.detect")
45

56
local includes = {
67
["common"] = ([==[
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
local config = require("config")
2-
local opcode = require("opcode")
3-
local detect = require("detect")
1+
local printf = require("tptasm.printf")
2+
local config = require("tptasm.config")
3+
local opcode = require("tptasm.opcode")
4+
local detect = require("tptasm.detect")
45

56
local includes = {
67
["common"] = ([==[
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
local printf = require("tptasm.printf")
2+
13
local function pig(mnemonic_token_hax, parameters_hax, mnemonics)
24
local sub_instructions = {}
35

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
local config = require("config")
2-
local opcode = require("opcode")
3-
local detect = require("detect")
4-
local xbit32 = require("xbit32")
5-
local hacks = require("archs.hacks")
1+
local printf = require("tptasm.printf")
2+
local config = require("tptasm.config")
3+
local opcode = require("tptasm.opcode")
4+
local detect = require("tptasm.detect")
5+
local xbit32 = require("tptasm.xbit32")
6+
local hacks = require("tptasm.archs.hacks")
67

78
local arch_i8m7d28s = {}
89

0 commit comments

Comments
 (0)