trunk/src/mess/drivers/starwbc.c
| r242292 | r242293 | |
| 9 | 9 | press BASIC/INTER/ADV and enter P#(number of players), then |
| 10 | 10 | START TURN. Refer to the official manual for more information. |
| 11 | 11 | |
| 12 | | |
| 13 | | TODO: |
| 14 | | - MCU clock is unknown |
| 15 | | |
| 16 | 12 | ***************************************************************************/ |
| 17 | 13 | |
| 18 | 14 | #include "emu.h" |
| r242292 | r242293 | |
| 21 | 17 | |
| 22 | 18 | #include "starwbc.lh" |
| 23 | 19 | |
| 24 | | // master clock is unknown, the value below is an approximation |
| 25 | | // (patent says R=51K, C=47pf, but then it sounds too low pitched) |
| 20 | // master clock is a single stage RC oscillator: R=51K, C=47pf, |
| 21 | // according to the TMS 1000 series data manual this is around 350kHz |
| 26 | 22 | #define MASTER_CLOCK (350000) |
| 27 | 23 | |
| 28 | 24 | |