-
Notifications
You must be signed in to change notification settings - Fork 97
/
chkbitperfect.lua
executable file
·32 lines (25 loc) · 1.01 KB
/
chkbitperfect.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env lua
local clownmd5 = require "build_tools.lua.clownmd5"
-- Prevent build.lua's calls to os.exit from terminating the program.
local os_exit = os.exit
os.exit = coroutine.yield
-- Build the ROM.
local co = coroutine.create(function() dofile("build.lua") end)
local _, _, abort = assert(coroutine.resume(co))
-- Restore os.exit back to normal.
os.exit = os_exit
if not abort then
-- Hash the ROM.
local hash = clownmd5.HashFile("s1built.bin")
-- Verify the hash against known builds.
print "-------------------------------------------------------------"
if hash == "\x1B\xC6\x74\xBE\x03\x4E\x43\xC9\x6B\x86\x48\x7A\xC6\x9D\x92\x93" then
print "ROM is bit-perfect with REV00."
elseif hash == "\x09\xDA\xDB\x50\x71\xEB\x35\x05\x00\x67\xA3\x24\x62\xE3\x9C\x5F" then
print "ROM is bit-perfect with REV01."
elseif hash == "\xC6\xC1\x5A\xEA\x60\xBD\xA1\x0A\xE1\x1C\x6B\xC3\x75\x29\x61\x53" then
print "ROM is bit-perfect with REVXB."
else
print "ROM is NOT bit-perfect with REV00, REV01, or REVXB!"
end
end