Skip to content

Commit

Permalink
5.4.0.1 Fixed SMS(FTDI) clk generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
110-kenichi committed Dec 24, 2023
1 parent 8e5e8ab commit bbcc6d9
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MAmidiMEmo 5.4.0.0 Itoken (c)2019, 2020, 2021, 2022, 2023 / GPL-2.0
MAmidiMEmo 5.4.0.1 Itoken (c)2019, 2020, 2021, 2022, 2023 / GPL-2.0

*** What is the MAmidiMEmo? ***

Expand Down Expand Up @@ -274,6 +274,7 @@ e.g.) YM2151 has 8ch FM sounds, so you can play 8 chords on MIDI 1ch or sharing
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SNQ9JE3JAQMNQ)

*** Changes ***
5.4.0.1 Fixed SMS(FTDI) clk generator.
5.4.0.0 Supported SMS(FTDI). FTDI dongle is compatible with for the Genesis.
5.3.0.1 Fixed minor bugs related with Font.
5.3.0.0 Added Font scale option in the Settings dialog. But not perfect.
Expand Down
Binary file modified docs/MAmidiMEmo/Manual.pdf
Binary file not shown.
Binary file modified docs/MAmidiMEmo/Manual.pptx
Binary file not shown.
2 changes: 1 addition & 1 deletion src/VSIF/VGMPlayer/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/VSIF/VGMPlayer/PortWriterSms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public override void Write(PortWriteData[] data)
{
byte[] sd = new byte[]
{
(byte)(((dt.Address & 0xf0) >> 2) | 0x02), (byte)(((dt.Address & 0x0f) << 2) | 0x00),
(byte)(((dt.Address & 0xf0) >> 2) | 0x03), (byte)(((dt.Address & 0x0f) << 2) | 0x00),
(byte)(((dt.Data & 0xf0) >> 2) | 0x01), (byte)(((dt.Data & 0x0f) << 2) | 0x00),
};
ds.AddRange(sd);
Expand Down
2 changes: 1 addition & 1 deletion src/mamidimemo/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static class Program
/// <summary>
///
/// </summary>
public const string FILE_VERSION = "5.4.0.0;
public const string FILE_VERSION = "5.4.0.1";

public const string FILE_COPYRIGHT = @"Virtual chiptune sound MIDI module ""MAmidiMEmo"" Version {0}
Copyright(C) 2019, 2023 Itoken.All rights reserved.";
Expand Down
2 changes: 1 addition & 1 deletion src/mamidimemo/VSIF/PortWriterSms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public override void Write(PortWriteData[] data)
{
byte[] sd = new byte[]
{
(byte)(((dt.Address & 0xf0) >> 2) | 0x02), (byte)(((dt.Address & 0x0f) << 2) | 0x00),
(byte)(((dt.Address & 0xf0) >> 2) | 0x03), (byte)(((dt.Address & 0x0f) << 2) | 0x00),
(byte)(((dt.Data & 0xf0) >> 2) | 0x01), (byte)(((dt.Data & 0x0f) << 2) | 0x00),
};
ds.AddRange(sd);
Expand Down

0 comments on commit bbcc6d9

Please sign in to comment.