Skip to content

Commit

Permalink
Merge pull request #38 from ScottPiersall/PassA-Loader
Browse files Browse the repository at this point in the history
PassA-Loader: Relocating Loader
  • Loading branch information
ScottPiersall authored Dec 2, 2022
2 parents e04266d + cfc9535 commit 07701cf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions SIC Simulator/frmAbout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,17 @@ 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);

ListViewItem BenDeBruin;
BenDeBruin = new ListViewItem("Ben DeBruin", "Relocating Loader");
this.lvAuthors.Items.Add(BenDeBruin);

ListViewItem AhmadOsmani;
AhmadOsmani = new ListViewItem("Ahmad Osmani", "Relocating Loader");
this.lvAuthors.Items.Add(AhmadOsmani);

String[] KrisWLvItems = { "Kris Wieben", "GUI & VM Testing" };
this.lvAuthors.Items.Add(new ListViewItem(KrisWLvItems));
Expand Down

0 comments on commit 07701cf

Please sign in to comment.