mirror of
https://github.com/holub/mame
synced 2025-04-21 16:01:56 +03:00
![]() * Fix timing of stream_update in discrete_sound_w All sound cores update before processing changed data * Add streeam_update to discrete_sound_r * Now supports multiple output nodes per module. There is the possibility to support multiple outputs per module. In this case, NODE_XXX is the default output. Alternative outputs may be accessed by using NODE_XXX_YY where 00<Y<08. You may also access nodes with macros: NODE_XXX = NODE_SUB(XXX, 0) NODE_XXX = NODE(XXX) NODE_XXX_YY = NODE_SUB(XXX, YY) with YY != 00 This should e.g. make discrete sound emulation easier when dealing with e.g. flip flops (Q & QQ) and binary counters * added sanity checks to check consistency issues introduced by this change * modules specify number of outputs ==> Certain special modules (WAVELOG) may no longer be used as input nodes * removed explicit (NODE_XX + expr) from a couple of drivers |
||
---|---|---|
docs | ||
src | ||
.gitattributes | ||
makefile |