1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-04-28 08:13:23 -07:00
lips/lips/init.lua

72 lines
2.0 KiB
Lua
Raw Normal View History

2016-01-13 09:51:29 -08:00
local lips = {
2015-11-20 16:21:13 -08:00
_DESCRIPTION = 'Assembles MIPS assembly files for the R4300i CPU.',
_URL = 'https://github.com/notwa/lips/',
2015-11-20 16:21:13 -08:00
_LICENSE = [[
Copyright (C) 2015,2016 Connor Olding
2015-11-20 16:21:13 -08:00
This program is licensed under the terms of the MIT License, and
is distributed without any warranty. You should have received a
copy of the license along with this program; see the file LICENSE.
]],
}
2016-04-14 07:33:33 -07:00
local path = string.gsub(..., "%.init$", "").."."
local util = require(path.."util")
local Parser = require(path.."Parser")
lips.writers = require(path.."writers")
2015-11-20 11:53:09 -08:00
2016-01-13 09:51:29 -08:00
function lips.assemble(fn_or_asm, writer, options)
-- assemble MIPS R4300i assembly code.
-- if fn_or_asm contains a newline; treat as assembly, otherwise load file.
-- returns error message on error, or nil on success.
2015-11-20 16:21:13 -08:00
fn_or_asm = tostring(fn_or_asm)
local default_writer = not writer
writer = writer or lips.writers.make_word()
options = options or {}
2015-11-20 14:00:02 -08:00
local function main()
2016-04-21 12:56:13 -07:00
if options.offset then
if options.origin or options.base then
error('offset and origin/base options are mutually exclusive')
end
io.stderr:write('Warning: options.offset is deprecated.\n')
options.origin = options.offset
options.base = 0
else
2016-04-23 19:36:26 -07:00
options.origin = options.origin or 0
2016-04-21 12:56:13 -07:00
options.base = options.base or 0x80000000
end
local fn = nil
2015-12-18 23:42:54 -08:00
local asm
2015-11-20 16:21:13 -08:00
if fn_or_asm:find('[\r\n]') then
asm = fn_or_asm
else
fn = fn_or_asm
2016-01-15 11:15:02 -08:00
asm = util.readfile(fn)
2015-12-18 23:42:54 -08:00
options.path = fn:match(".*/")
2015-11-20 16:21:13 -08:00
end
2015-12-17 07:19:24 -08:00
local parser = Parser(writer, fn, options)
parser:parse(asm)
if default_writer then
writer()
end
end
2015-11-20 11:53:09 -08:00
if options.unsafe then
return main()
else
local ok, err = pcall(main)
return err
end
2015-11-20 11:53:09 -08:00
end
2015-11-20 16:21:13 -08:00
2016-01-13 09:51:29 -08:00
return setmetatable(lips, {
__call = function(self, ...)
return self.assemble(...)
2015-11-20 16:21:13 -08:00
end,
})