Add the missing dirs, dumbarse

This commit is contained in:
Luke D. Jones
2023-06-24 13:15:11 +12:00
parent 0a008a653a
commit 4611c08085
31 changed files with 4954 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
use super::Row;
pub const GU604: [Row; 10] = [
Row(0x01, 7, 34),
Row(0x01, 7 + 34, 34),
Row(0x01, 7 + 34 * 2, 34),
Row(0x01, 7 + 34 * 3, 34),
Row(0x01, 7 + 34 * 4, 34),
Row(0x01, 7 + 34 * 5, 34),
Row(0x01, 7 + 34 * 6, 34),
Row(0x01, 7 + 34 * 7, 34),
Row(0x01, 7 + 34 * 8, 34),
Row(0x01, 7 + 34 * 9, 34),
];