Skip to content

Commit

Permalink
TAG202 2024/03/20
Browse files Browse the repository at this point in the history
  Compiler
    ]コマンドで数値を省略出来るように機能追加。(2が指定した時と同じになる)
  • Loading branch information
kumatan committed Mar 20, 2024
1 parent 1d8f4b2 commit 08d604a
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
�X�V����
TAG202 2024/03/20
Compiler
]�R�}���h�Ő��l���ȗ��o����悤�ɋ@�\�lj��B(2���w�肵�����Ɠ����ɂȂ�)

TAG201 2024/01/14
Compiler
ADPCMA Decode�����̎኱�̒����B
Expand Down
2 changes: 1 addition & 1 deletion Console_NET5/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"Console_NET5": {
"commandName": "Project",
"commandLineArgs": "\"C:\\Users\\kuma\\Desktop\\SDI (OPNB+OPM版)\\testSDI - Ending - We Are Desirous of Peace (OPNB+OPM版).muc\"",
"commandLineArgs": "\"D:\\bootcamp\\FM音源\\data\\自作\\test\\test.muc\"",
"nativeDebugging": true
}
}
Expand Down
Binary file modified Player64/lib/MDSound.dll
Binary file not shown.
Binary file modified Wav_NET5/MDSound.dll
Binary file not shown.
15 changes: 12 additions & 3 deletions mucomDotNETCompiler/muc88.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1898,10 +1898,19 @@ private EnmFCOMPNextRtn SETSE1(int b ,string errCode_Fmt,string errCode_Val)

private EnmFCOMPNextRtn SETLPE()
{
int ptr;
int ptr = mucInfo.srcCPtr;
ptr++;
int rep = msub.REDATA(mucInfo.lin, ref ptr);
if (mucInfo.Carry)//数値読み取れなかった
{
if (mucInfo.DriverType == MUCInfo.enmDriverType.DotNet)
rep = 2;
else
throw new MucException(
string.Format(msg.get("E0201"), msg.get("E0436"))
, mucInfo.row, mucInfo.col);
}

ptr = mucInfo.srcCPtr;
int rep = msub.ERRT(mucInfo.lin, ref ptr, msg.get("E0436"));
mucInfo.srcCPtr = ptr;
if (rep < 0 || rep > 255)
{
Expand Down
Binary file modified mucomDotNETPlayer/lib/MDSound.dll
Binary file not shown.
Binary file modified mucomDotNETPlayer/lib/fmgenmodule.dll
Binary file not shown.
Binary file modified mucomDotNETPlayer/lib/scci.dll
Binary file not shown.

0 comments on commit 08d604a

Please sign in to comment.