Skip to content

Commit

Permalink
Added Conjtributions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo640 committed Nov 28, 2024
1 parent 9891744 commit 1592fd8
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions SIC Simulator/frmAbout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,14 @@ private void frmAbout_Load(object sender, EventArgs e)
String[] EllisLLvItems = { "Ellis Levine", "Pass 1 & 2 of SIC Assembler" };
this.lvAuthors.Items.Add(new ListViewItem(EllisLLvItems));

ListViewItem WDanielHiromoto;
WDanielHiromoto = new ListViewItem("W. Daniel Hiromoto", "Relocating Loader");
this.lvAuthors.Items.Add(WDanielHiromoto);
String[] WDanielHiromoto = {"W. Daniel Hiromoto", "Relocating Loader" };
this.lvAuthors.Items.Add(new ListViewItem(WDanielHiromoto));

ListViewItem BenDeBruin;
BenDeBruin = new ListViewItem("Ben DeBruin", "Relocating Loader");
this.lvAuthors.Items.Add(BenDeBruin);
String[] BenDeBruin = {"Ben DeBruin", "Relocating Loader"};
this.lvAuthors.Items.Add(new ListViewItem(BenDeBruin));

ListViewItem AhmadOsmani;
AhmadOsmani = new ListViewItem("Ahmad Osmani", "Relocating Loader");
this.lvAuthors.Items.Add(AhmadOsmani);
String[] AhmadOsmani = {"Ahmad Osmani", "Relocating Loader"};
this.lvAuthors.Items.Add(new ListViewItem(AhmadOsmani));

String[] KrisWLvItems = { "Kris Wieben", "GUI & VM Testing" };
this.lvAuthors.Items.Add(new ListViewItem(KrisWLvItems));
Expand Down Expand Up @@ -79,6 +76,15 @@ private void frmAbout_Load(object sender, EventArgs e)
String[] BryceStremmelLvItems = { "Bryce Stremmel", "Bug Fixing & Device Features" };
this.lvAuthors.Items.Add(new ListViewItem(BryceStremmelLvItems));

String[] AdamWLvItems = { "Adam Walton", "Base Code Editor & Loading SIC Files" };
this.lvAuthors.Items.Add(new ListViewItem(AdamWLvItems));

String[] RoryNLvItems = { "Rory Naughton", "Base Code Editor & Saving SIC Files" };
this.lvAuthors.Items.Add(new ListViewItem(RoryNLvItems));

String[] AaronSLvItems = { "Aaron Swartz", "[Insert Contributions]" };
this.lvAuthors.Items.Add(new ListViewItem(AaronSLvItems));

this.lblVersion.Text = "Version: " + Application.ProductVersion.ToString();
}

Expand Down

0 comments on commit 1592fd8

Please sign in to comment.