Skip to content

Commit

Permalink
feat: use rustico UI + add credits + tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeg committed Aug 9, 2024
1 parent 4c4aeb4 commit b5c7938
Show file tree
Hide file tree
Showing 10 changed files with 162 additions and 405 deletions.
76 changes: 0 additions & 76 deletions public/emu/FrameTimer.js

This file was deleted.

11 changes: 0 additions & 11 deletions public/emu/addresses.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,6 @@ export const address_maps = {
gym6: gym6_data_maps,
};

const TILE_ID_TO_NTC_BLOCK_ID = new Map([
[0xef, 0],
[0x7b, 1],
[0x7d, 2],
[0x7c, 3],
]);

function _bcdToDecimal(byte1, byte2) {
return byte2 * 100 + (byte1 >> 4) * 10 + (byte1 & 0xf);
}

// The 2 functions below work because Javascript guarantees iteration order for objects
export function getDataAddresses(definition) {
const values = Object.values(definition);
Expand Down
23 changes: 0 additions & 23 deletions public/emu/embed.css

This file was deleted.

27 changes: 0 additions & 27 deletions public/emu/emu.html

This file was deleted.

125 changes: 0 additions & 125 deletions public/emu/emu.js

This file was deleted.

Loading

0 comments on commit b5c7938

Please sign in to comment.