Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added: Op_Or_32(), Op_And_32() and tests #364

Merged
merged 4 commits into from
Jan 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion MBBSEmu/HostProcess/ExportedModules/Majorbbs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection.Metadata;
using System.Text;

namespace MBBSEmu.HostProcess.ExportedModules
Expand Down Expand Up @@ -158,6 +157,8 @@ public Majorbbs(IClock clock, ILogger logger, AppSettings configuration, IFileUt
Module.Memory.SetWord("PFNLVL", 0);
Module.Memory.AllocateVariable("VERSION", 5);
Module.Memory.SetArray("VERSION", Encoding.ASCII.GetBytes("2.00"));
Module.Memory.AllocateVariable("SYSTEM_NAME", 0x32, true);
Module.Memory.SetArray("SYSTEM_NAME", Encoding.ASCII.GetBytes(_configuration.BBSTitle));
tuday2 marked this conversation as resolved.
Show resolved Hide resolved
Module.Memory.AllocateVariable("SYSCYC", FarPtr.Size);

Module.Memory.AllocateVariable("NUMBYTS", sizeof(uint));
Expand Down