summaryrefslogtreecommitdiff
path: root/utils/hwstub/tools/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hwstub/tools/init.lua')
-rw-r--r--utils/hwstub/tools/init.lua18
1 files changed, 6 insertions, 12 deletions
diff --git a/utils/hwstub/tools/init.lua b/utils/hwstub/tools/init.lua
index 4c62de007f..3c60abf806 100644
--- a/utils/hwstub/tools/init.lua
+++ b/utils/hwstub/tools/init.lua
@@ -79,18 +79,12 @@ if not hwstub.options.quiet then
79 print(" id: " .. string.format("%#x (%s)", hwstub.dev.target.id, id_str)) 79 print(" id: " .. string.format("%#x (%s)", hwstub.dev.target.id, id_str))
80 print(" name: " .. hwstub.dev.target.name) 80 print(" name: " .. hwstub.dev.target.name)
81 print(" layout") 81 print(" layout")
82 print(" on-chip ram") 82 print(" code: " .. string.format("%#x bytes @ %#x",
83 print(" code: " .. string.format("%#x bytes @ %#x", 83 hwstub.dev.layout.code.size, hwstub.dev.layout.code.start))
84 hwstub.dev.layout.ocram.code.size, hwstub.dev.layout.ocram.code.start)) 84 print(" stack: " .. string.format("%#x bytes @ %#x",
85 print(" stack: " .. string.format("%#x bytes @ %#x", 85 hwstub.dev.layout.stack.size, hwstub.dev.layout.stack.start))
86 hwstub.dev.layout.ocram.stack.size, hwstub.dev.layout.ocram.stack.start)) 86 print(" buffer: " .. string.format("%#x bytes @ %#x",
87 print(" buffer: " .. string.format("%#x bytes @ %#x", 87 hwstub.dev.layout.buffer.size, hwstub.dev.layout.buffer.start))
88 hwstub.dev.layout.ocram.buffer.size, hwstub.dev.layout.ocram.buffer.start))
89 print(" features");
90 print(" log: " .. tostring(hwstub.dev.features.log))
91 print(" mem: " .. tostring(hwstub.dev.features.mem))
92 print(" call: " .. tostring(hwstub.dev.features.call))
93 print(" jump: " .. tostring(hwstub.dev.features.jump))
94end 88end
95 89
96-- 90--