summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/devices.lua
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2017-07-05 11:44:49 +0200
committer Olivier Galibert <galibert@pobox.com>2017-11-26 17:41:27 +0100
commit6caef2579a1490f05d28bcede731cbdd45fc5c65 (patch)
tree8055384e183be3cb27e7d0894ac53dc96c09e6fa /scripts/src/devices.lua
parent34b222062c89adbeed822f56be6130421777e11f (diff)
dvdisasm: Overhaul [O. Galibert]
Disassemblers are now independant classes. Not only the code is cleaner, but unidasm has access to all the cpu cores again. The interface to the disassembly method has changed from byte buffers to objects that give a result to read methods. This also adds support for lfsr and/or paged PCs.
Diffstat (limited to 'scripts/src/devices.lua')
-rw-r--r--scripts/src/devices.lua8
1 files changed, 2 insertions, 6 deletions
diff --git a/scripts/src/devices.lua b/scripts/src/devices.lua
index ede4d8b0a86..89d88fd7274 100644
--- a/scripts/src/devices.lua
+++ b/scripts/src/devices.lua
@@ -79,15 +79,11 @@ if #disasm_files > 0 then
}
if #disasm_dependency > 0 then
- dependency {
- disasm_dependency[1]
- }
+ dependency(disasm_dependency)
end
if #disasm_custombuildtask > 0 then
- custombuildtask {
- disasm_custombuildtask[1]
- }
+ custombuildtask(disasm_custombuildtask)
end
end