Skip to content

Commit

Permalink
Pull in mister issue 254 to fix incorrect sound pitch (MiSTer-devel/G…
Browse files Browse the repository at this point in the history
  • Loading branch information
budude2 committed Aug 14, 2024
1 parent 5eccd7e commit fe3d6f2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pkg/gb/Cores/budude2.GB/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"description": "Game Boy",
"author": "budude2",
"url": "https://github.com/budude2/openfpga-GBC",
"version": "1.2.2",
"date_release": "2024-06-17"
"version": "1.2.3",
"date_release": "2024-08-13"
},
"framework": {
"target_product": "Analogue Pocket",
Expand Down
Binary file modified pkg/gb/Cores/budude2.GB/gb.rbf_r
Binary file not shown.
4 changes: 2 additions & 2 deletions pkg/gbc/Cores/budude2.GBC/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"description": "Game Boy Color",
"author": "budude2",
"url": "https://github.com/budude2/openfpga-GBC",
"version": "1.2.2",
"date_release": "2024-06-17"
"version": "1.2.3",
"date_release": "2024-08-13"
},
"framework": {
"target_product": "Analogue Pocket",
Expand Down
Binary file modified pkg/gbc/Cores/budude2.GBC/gbc.rbf_r
Binary file not shown.
2 changes: 1 addition & 1 deletion src/ap_core.qsf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# ========================
set_global_assignment -name ORIGINAL_QUARTUS_VERSION 18.1.1
set_global_assignment -name PROJECT_CREATION_TIME_DATE "21:31:36 JANUARY 22, 2020"
set_global_assignment -name LAST_QUARTUS_VERSION "23.1std.0 Lite Edition"
set_global_assignment -name LAST_QUARTUS_VERSION "23.1std.1 Lite Edition"
set_global_assignment -name PROJECT_OUTPUT_DIRECTORY output_files
set_global_assignment -name PRE_FLOW_SCRIPT_FILE "quartus_sh:apf/build_id_gen.tcl"
set_global_assignment -name SMART_RECOMPILE ON
Expand Down
6 changes: 3 additions & 3 deletions src/apf/build_id.mif
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ DATA_RADIX = HEX;
CONTENT
BEGIN

0E0 : 20240617;
0E1 : 00215826;
0E2 : 5986fad0;
0E0 : 20240813;
0E1 : 00212410;
0E2 : ea0c04f8;

END;
2 changes: 1 addition & 1 deletion src/gb/gbc_snd.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -1525,7 +1525,7 @@ begin
else
-- LFSR
if noi_playing = '1' and en_snd4 = '1' then
if noi_fcnt = 0 then
if noi_fcnt = 1 then
-- Noise LFSR
noi_xor := not(noi_lfsr(0) xor noi_lfsr(1));
noi_lfsr := noi_xor & noi_lfsr(14 downto 1);
Expand Down

0 comments on commit fe3d6f2

Please sign in to comment.