mirror of
https://github.com/holub/mame
synced 2025-06-06 04:43:45 +03:00
7 lines
240 B
Lua
7 lines
240 B
Lua
return require('lib/tap')(function (test)
|
|
test("basic 64bit conversions", function (print, p, expect, uv)
|
|
assert(string.format("%x", 29913653248) == "6f6fe2000")
|
|
assert(string.format("%x", 32207650816) == "77fb9c000")
|
|
end)
|
|
end)
|