In case you hadn't found this setting in the emulator - from the emulator menus try Emulation->Peripheral Setup, then click the Sound tab in the dialog box. Then check the "Enable Sound" checkbox. Works for me in v1.7. Cheers, MDL
Here's an example project for PC-8201. Your "mileage may vary" depending on the other models supported by the Virtual-T emulator. This particular example is a code stub used to transfer data between RAM banks using the PC-8201 ROM routines. It's meant to be used with BASIC EXEC statement after POKE-ing the various target variables into memory.
Here's the short answer. More detail in a later post. 1. In your project folder, create file with a .lkr extension (e.g. link.lkr) and set it in the linker script folder in the project tree. 2. In your .lkr file add a single line to indicate the start and end of the absolute code segment (assumes you have and ASEG psuedo-op before the ORG of your assembler file. CODE NAME=.aseg START=0xe380 END=0xf380 This particular command sets up the code to locate in a 4k area just below the PC-8201 bookeeping...