From 203acb7c81e77a9f2f92e5dd3cc68f489cae523a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Fri, 5 Nov 2021 01:01:10 +0300 Subject: [PATCH] Tiiiiiny refactoring --- src/MainForm.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/MainForm.cs b/src/MainForm.cs index fa2f77c..8819022 100644 --- a/src/MainForm.cs +++ b/src/MainForm.cs @@ -158,7 +158,7 @@ namespace processor /// Loads hexadecimal CPU instructions to RAM /// /// - private void LoadHexCode(List codes) + private void LoadHexCode(IReadOnlyList codes) { int j = 0; for (int i = 0; i < codes.Count; i++) @@ -241,4 +241,7 @@ namespace processor } } } -} \ No newline at end of file +} + +/* +*/ \ No newline at end of file