Sample frequency increased to match 6502 clock

This commit is contained in:
tudnai 2022-08-30 21:54:30 -07:00
parent c826e6228e
commit 60b0c3917a
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import struct
def convert_bin_to_audio(filename):
data_size = os.path.getsize(filename)
channels = 2
sample_rate = 192000 # must be the same as in speaker.c : spkr_sample_rate
sample_rate = 1023000 # 192000 # must be the same as in speaker.c : spkr_sample_rate
bits_per_sample = 16
header_size = 44