mirror of
https://github.com/izzy2lost/Torch.git
synced 2026-07-06 00:18:35 -07:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
const fs = require('fs');
|
|
|
|
const bytes = fs.readFileSync('./baserom.eu.z64');
|
|
const file = fs.readFileSync('./00_sound_player_eu.m64');
|
|
|
|
const offset = bytes.indexOf(file);
|
|
const size = file.length;
|
|
|
|
console.log(offset, size) |