Implemented a load more Z80 OpCodes

This commit is contained in:
2026-04-09 16:08:56 +01:00
parent 340583d663
commit f22da937b5
3 changed files with 179 additions and 6 deletions

View File

@@ -182,19 +182,19 @@
// lstDisassembly
//
lstDisassembly.FormattingEnabled = true;
lstDisassembly.Location = new Point(533, 11);
lstDisassembly.Location = new Point(523, 11);
lstDisassembly.Margin = new Padding(2);
lstDisassembly.Name = "lstDisassembly";
lstDisassembly.Size = new Size(186, 264);
lstDisassembly.Size = new Size(252, 264);
lstDisassembly.TabIndex = 16;
//
// lstStack
//
lstStack.FormattingEnabled = true;
lstStack.Location = new Point(723, 11);
lstStack.Location = new Point(779, 11);
lstStack.Margin = new Padding(2);
lstStack.Name = "lstStack";
lstStack.Size = new Size(186, 264);
lstStack.Size = new Size(130, 264);
lstStack.TabIndex = 17;
//
// btnExit
@@ -212,7 +212,7 @@
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(927, 350);
ClientSize = new Size(928, 350);
Controls.Add(btnExit);
Controls.Add(lstStack);
Controls.Add(lstDisassembly);