remove unused colors.asm const file

This commit is contained in:
2026-04-24 09:01:41 +02:00
parent 5588d4c29a
commit e6b2d8b086
2 changed files with 0 additions and 10 deletions

View File

@@ -10,7 +10,6 @@ if (Deno.args.length !== 0) {
import { TextLineStream } from "jsr:@std/streams@1.1.0";
const asmFilePaths = [
"src/consts/colors.asm",
"src/consts/game.asm",
"src/consts/keyboard.asm",
"src/consts/map.asm",

View File

@@ -1,9 +0,0 @@
pub const colors.black = 0b000_000_00
pub const colors.blue = 0b000_000_11
pub const colors.green = 0b000_111_00
pub const colors.gray = 0b010_011_10
pub const colors.red = 0b111_000_00
pub const colors.pink = 0b111_000_11
pub const colors.orange = 0b111_100_00
pub const colors.yellow = 0b111_110_00
pub const colors.white = 0b111_111_11