vm: very basic virtual machine

This commit is contained in:
2023-11-14 23:44:10 -08:00
parent 8c48c93663
commit 041848c14e
92 changed files with 1652 additions and 243 deletions

11
compiler/build.gradle.kts Normal file
View File

@ -0,0 +1,11 @@
plugins {
id("gay.pizza.pork.module")
}
dependencies {
api(project(":ast"))
api(project(":bytecode"))
api(project(":parser"))
api(project(":frontend"))
implementation(project(":common"))
}