Rewrite site. Again. With JS and Vite

This commit is contained in:
2026-08-11 02:35:44 -04:00
parent a433a534a7
commit 7e9e744f0d
46 changed files with 1657 additions and 1523 deletions
+3 -6
View File
@@ -1,12 +1,9 @@
# Lua Programming Language
<!-- TODO ## Lua 5.4 C API-->
<!-- TODO ## Lua 5.5 C API-->
## Lua 5.4 Bytecode
> These are **unstable** and may differ in different versions of the language.
> They are not part of the language specification but an implementation detail, which in this case is the reference implementation.
> The reference implementation used to have a stack based but now uses a register based VM similar to how modern real computer architectures.
^[These are **unstable** and may differ in different versions of the language. They are not part of the language specification but an implementation detail, which in this case is the reference implementation.] ^[The reference implementation used to have a stack based but now uses a register based VM similar to how modern real computer architectures.]
The instructions are 32 bits wide; every instruction has an opcode that takes up 7 bits, which leaves out 25 bits for the addresses and values.