turtle/init.lua
Novatux 9b83e2586a Merge forth_computer: part I
This includes screen and disk drive, but not the computer yet
2015-02-13 12:36:20 +01:00

25 lines
570 B
Lua

turtles = {}
local modpath = minetest.get_modpath("turtle")
-- Database handler (for turtles and floppies)
dofile(modpath .. "/db.lua")
-- Initial computer state: bootloader
dofile(modpath .. "/computer_memory.lua")
-- Data for the forth floppy, created from forth.fth file by f.py
dofile(modpath .. "/forth_floppy.lua")
-- Computer simulation code
dofile(modpath .. "/cptr.lua")
-- Screen handler for formspec
dofile(modpath .. "/screen.lua")
-- Floppy, floppy programmator, and disk
dofile(modpath .. "/floppy.lua")
-- Turtle code
dofile(modpath .. "/t2.lua")