Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch add-ym2413 Excluding Merge-Ins
This is equivalent to a diff from 690dfbc592 to 84d7c97b57
2024-09-02
| ||
00:45 | Merge and integrate the add-ym2413 branch check-in: eb4072fa67 user: alexa tags: trunk | |
00:44 | Fix compilation when using -Dstrict_multi_assign and -Dno_number_autocast Closed-Leaf check-in: 84d7c97b57 user: alexa tags: add-ym2413 | |
00:39 | Fix array size in NES chip check-in: 441cfb6ab1 user: alexa tags: add-ym2413 | |
2024-08-31
| ||
08:07 |
Start work on YM2413.
Nothing is hooked into the main library core yet. check-in: bb06eebe91 user: alexa tags: add-ym2413 | |
2024-08-29
| ||
00:16 | Update export-wiki-pages.sh check-in: 690dfbc592 user: alexa tags: trunk | |
2024-07-28
| ||
03:04 | Add make-release-tarball.sh check-in: ccab170b4e user: alexa tags: trunk | |
Changes to Rakefile.
︙ | |||
53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | + | stripped." exit 0 else puts "Unknown optMode: #{args[:optMode]}" exit 1 end cmdLine += " -Dstrict_multi_assign -Dno_number_autocast" cmdLine += " #{mainSrc}" sh cmdLine end file VGMINFO_BIN, [:optMode] => SOURCES + VGMINFO_SRC + [SHARD, SHARD_LOCK] do |t, args| buildBin(t, args, VGMINFO_SRC) end |
︙ |
Changes to src/yunosynth/chips/chip-nes.cr.
︙ | |||
37 38 39 40 41 42 43 | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | - + | @chipSampleRate : UInt32 = 0 @apu : NesApuNsfPlay? @dmc : NesDmcNsfPlay? @fds : NesFdsNsfPlay? @memory : Array(UInt8) = [] of UInt8 @hasFds : Bool = false property options : UInt16 = 0x8000_u16 |
︙ |
Added src/yunosynth/chips/chip-ym2413.cr.