-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the Maslime wiki! Maslime is a text editor that mainly aims to ease Assembly level programming on an 8086 emulator. We(in our college) use cmd which provides absolutely no features such as highlight of instructions, instruction misspell warnings, or any other appreciable feature. So, we at nitte decided to make what we felt was necessary and I fell prey to it. So, I have designed the very basic, bare minimum possible features ---text editor that highlights the first occurrence of instructions (add, mov both cases), on the click of a button--- I have suggested some ways to make it a better functioning text editor in the readme. Follow these steps to run the text editor.
1.Open Visual studio - Create new Project - Visual C# - Classic Desktop - Windows Forms Application
2.Name it something. I have named it WindowsFormApplication1. You can name it the same to avoid fuss.
3.Now, Under the "Solution Explorer" tab(Right part of window ,in my computer), you should find a c# under the project name. 4.Explore the dropdown lists for a while to pick up some knowledge, about whereabouts of files.
5.Now, Under "WindowsFormApplication1" - double click "Form1.cs" --> replace all code present in that with the code present in my "Form1.cs" of the button_color_change repository. Mainly, replace "WindowsFormApplicatoin1" after namespace keyword with your project name.
6.Under dropdown of "Form1.cs", you should find "Form1.Designer.cs". Replace its code similarly. Also change "WindowsFormApplication1" to your project name.
7.Similarly, repeat it for "Program.cs". Replace "WindowsFormApplication1" with your project name.
8.You must be ready with build. Build the solution, and run it! --ajHash