-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProgram.cs
More file actions
1272 lines (1063 loc) · 73 KB
/
Program.cs
File metadata and controls
1272 lines (1063 loc) · 73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Homebrew MyCPU assembler program
// Author: Sylvain Fortin sylfortin71@hotmail.com
// Date: 3 jan 2026
// Documentation:
// This program is an assembler that converts MyCPU mnemonics into opcodes
// executable by the MyCPU micro-program.
//
// The source file (with .asm extension) is passed as a command-line argument.
//
// Two output files are generated:
// - filename.lst : ASCII listing file containing the address, opcode, operands,
// and comments.
// - filename.bin : Binary file containing the assembled data to be programmed
// into the EEPROM.
//
// The EEPROM programmer used is the TL866II Plus from XGecu.
using Assembler;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace Assembler
{
public enum OperandMode
{
Hex = 0,
Symbol = 1,
Relative = 2,
Ascii = 3,
Negative = 4
}
public class InstrTable
{
public string StringValue { get; set; }
public int OpCode { get; set; }
public int NbByte { get; set; }
public OperandMode Sym { get; set; }
public int Offset { get; set; }
public Regex Regex { get; set; }
public string Operation { get; set; } // Formal behavior
public string Flags { get; set; } // Flags affected
public string Desc { get; set; } // Human readable
}
class SymbolTableEntry
{
public string Symbol { get; set; }
public int Address { get; set; }
}
class Program
{
// Declare symbolTable as a static member
private static Dictionary<string, SymbolTableEntry> symbolTable = new Dictionary<string, SymbolTableEntry>();
// Function to check if a string is a valid hexadecimal value
static bool IsHex(string hexValue)
{
foreach (char c in hexValue)
{
if (!((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F')))
{
return false;
}
}
return true;
}
static void getNibble(string sNibble, ref int iNibble, ref int iErrorNumber)
{
// Check if the string is a valid hexadecimal value
if (!(IsHex(sNibble)))
{
Console.WriteLine();
// Add logic for printing to a file or console (similar to PRINT statements in BASIC)
Console.WriteLine("**** ERREUR SUR VALEUR HEXADECIMALE (0-9,A-F) ****");
Console.WriteLine("**** ERREUR SUR VALEUR HEXADECIMALE (0-9,A-F) ****"); // .LST
iErrorNumber++;
iNibble = 0;
}
else
{
// Convert hexadecimal string to integer
iNibble = int.Parse(sNibble, System.Globalization.NumberStyles.HexNumber);
}
// Continue with the logic after the IF statement
// ...
}
static int FindNextNonSpaceCharacter(string input, int startIndex)
{
for (int i = startIndex; i < input.Length; i++)
{
if (input[i] != ' ')
{
return i; // Return the index of the next non-space character
}
}
return -1; // Return -1 if no non-space character is found after the startIndex
}
static void Main(string[] args)
{
bool bPrintISA = false;
string sFileName = "";
// ---- Argument parsing ----
foreach (var arg in args)
{
if (arg == "-i" || arg == "--isa")
{
bPrintISA = true;
}
else
{
sFileName = arg;
}
}
var dataList = BuildInstructionTable();
// If ISA requested → print and exit
if (bPrintISA)
{
PrintInstructionTable(dataList);
return;
}
/*
if (string.IsNullOrEmpty(sFileName))
{
Console.WriteLine("Usage:");
Console.WriteLine(" assembler <file.asm>");
Console.WriteLine(" assembler -i (print instruction set)");
return;
}
*/
bool bStopOnError = true;
string sTemp;
symbolTable = new Dictionary<string, SymbolTableEntry>();
Console.WriteLine("Homebrew assembler start");
string sCurrentPath = "";
string sRepositoryPath = "";
// ---- Argument validation ----
if (args.Length != 1)
{
Console.WriteLine("ERROR: Invalid number of arguments.");
Console.WriteLine("Usage: assembler <sourcefile.asm>");
Environment.Exit(1);
}
sFileName = args[0];
if (args.Length != 1) // No argument
{
sRepositoryPath = "C:\\Sylvain\\MyCPU\\opCodeAssembler\\examples"; // Fixed path for now
sFileName = "fibonacy.asm"; // Replace with your desired file name
}
else
{ // With argument
sCurrentPath = Directory.GetCurrentDirectory();
sRepositoryPath = Path.Combine(sCurrentPath, "..\\..\\examples"); // Move up two level and go to examples
//sRepositoryPath = Path.Combine(sCurrentPath, "..\\..\\..\\examples"); // Move up two level and go to examples
}
string baseFileName = Path.GetFileNameWithoutExtension(sFileName);
string fileExtension = Path.GetExtension(sFileName);
string fullPath = Path.Combine(sRepositoryPath, sFileName);
//int iAddressEepromBegin = 0xE000;
int iAddressEepromBegin = 0x8000;
// Reserve space for one 2864 EEPROM
// we have 12 bit address (A12-A0)
//const int iEpromSize = 8192;
const int iEpromSize = 32768; // 32K size for 28C256 EEPROM with 15 bit address (A14-A0)
int[] aEeprom = new int[iEpromSize];
bool[] aEepromUsed = new bool[iEpromSize];
string[] aEepromOwner = new string[iEpromSize]; // optional but recommended
Array.Clear(aEepromUsed, 0, iEpromSize);
int iErrorNumber = 0;
int iErrorNumberPass1 = 0;
int iErrorNumberPass2 = 0;
int iAddress = 0;
int iTotalAssembledFieldWidth = 12; // number of character allowed to print assembled bytes.
int iAssembledMnemonicPosition = 4 + iTotalAssembledFieldWidth; // 4 correspond to number of characters for the address
//var dataList = BuildInstructionTable();
CompileRegex(dataList);
WriteInstructionTable(Path.Combine(sRepositoryPath, "instruction_table.txt"), dataList);
WriteRegexTable(Path.Combine(sRepositoryPath, "regex_table.txt"), dataList);
StreamReader inputFile;
try
{
inputFile = File.OpenText(fullPath);
}
catch (DirectoryNotFoundException)
{
Console.WriteLine("ERROR: Could not find part of the path:");
Console.WriteLine(fullPath);
return;
}
catch (FileNotFoundException)
{
Console.WriteLine("ERROR: File not found:");
Console.WriteLine(fullPath);
return;
}
int iIndexTable;
int iFirstCharacterIndex;
string sLine = "";
iFirstCharacterIndex = 9;
//sLine = " LDA (?b0,X)";
//sLine = " LDA (SP-1)";
//iIndexTable = FindInstructionIndex(sLine, iFirstCharacterIndex, dataList);
//InstrTable tst_instr = dataList[51];
//sLine = "LDA (SP-1)";
//bool bTest = tst_instr.Regex.IsMatch(sLine);
UInt32 LineCounter;
int iPosComment;
string sNibble;
int iMsq = 0;
int iLsq = 0;
int[] iOpData = new int[5]; // Creates an array of 5 integers
// Make a two pass assembler. First pass to gather symbols tables with addresses and a second pass for code assembly.
for (int iPass = 1; iPass <= 2; iPass++)
{
Console.Write("Pass=" + iPass + "\n");
LineCounter = 0; // Input source file line number beeing processed
iAddress = 0;
iErrorNumber = 0;
if (iPass == 2)
{
Array.Clear(aEepromUsed, 0, aEepromUsed.Length);
Array.Clear(aEepromOwner, 0, aEepromOwner.Length);
}
using (inputFile = File.OpenText(fullPath))
using (StreamWriter lstFile = File.CreateText(Path.Combine(sRepositoryPath, baseFileName + ".lst")))
{
sLine = "";
while (!inputFile.EndOfStream)
{
LineCounter++;
sLine = inputFile.ReadLine();
iFirstCharacterIndex = FindFirstNonSpaceCharacter(sLine);
iPosComment = sLine.IndexOf(';'); // Locate where the comment begin
// Empty line ?
if (iFirstCharacterIndex == -1)
{
if (iPass == 2) // Output only in PASS 2
{
Console.WriteLine("");
lstFile.WriteLine("");
}
}
// Begin with ";"
else if (sLine.Substring(0, 1) == ";")
{
if (iPass == 2) // Output only in PASS 2
{
sLine = sLine.PadLeft(sLine.Length + iAssembledMnemonicPosition);
Console.WriteLine(sLine);
lstFile.WriteLine(sLine);
}
}
// Only a comment line ?
else if (iFirstCharacterIndex == iPosComment)
{
if (iPass == 2) // Output only in PASS 2
{
Console.Write(new string(' ', iAssembledMnemonicPosition));
lstFile.Write(new string(' ', iAssembledMnemonicPosition));
Console.WriteLine(sLine);
lstFile.WriteLine(sLine);
}
}
// Process the line
else
{
// Line start with a symbol?
// if (iFirstCharacterIndex == 0)
{
int iSpaceIndex = sLine.IndexOf(' '); // Find the index of the first space character
string sSymbol = sLine.Substring(0, iSpaceIndex); // Extract the substring from the start of the space character
if (sSymbol != "") // Only if non empty symbol
{
// Symbol directory check and update only possible in PASS 1
if (iPass == 1)
{
if (!symbolTable.ContainsKey(sSymbol)) // only if symbol does not exist
{
{
symbolTable[sSymbol] = new SymbolTableEntry { Symbol = sSymbol, Address = iAddress };
}
}
}
}
// Check if there is a mnemonic following
int iNextNonSpaceIndex = FindNextNonSpaceCharacter(sLine, iSpaceIndex);
// Reposition the iFirstCharacterIndex to be the begin of the mnemonic
iFirstCharacterIndex = iNextNonSpaceIndex;
}
// Search in mnemonic table
bool bFound = false;
iIndexTable = 0; // start at first location
iIndexTable = FindInstructionIndex(sLine, iFirstCharacterIndex, dataList);
if (iIndexTable != -1)
{
bFound = true;
}
if (bFound)
{
int iOffset = 0;
if (iIndexTable == 0) // ORG
{
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
iAddress = int.Parse(sLine.Substring(iOffset, 4), System.Globalization.NumberStyles.HexNumber);
if (iPass == 2)
{
Console.Write(new string(' ', iAssembledMnemonicPosition));
lstFile.Write(new string(' ', iAssembledMnemonicPosition));
Console.WriteLine(sLine);
lstFile.WriteLine(sLine);
}
}
else if (iIndexTable == 1) // DB
{
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
sNibble = sLine.Substring(iOffset, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 1, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[0] = 16 * iMsq + iLsq;
}
else if (iIndexTable == 2) // EQU
{
int iSpaceIndex = sLine.IndexOf(' '); // Find first space
string sSymbol = sLine.Substring(0, iSpaceIndex);
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
int iSymbolAddress = int.Parse(sLine.Substring(iOffset, 4), System.Globalization.NumberStyles.HexNumber);
symbolTable[sSymbol].Address = iSymbolAddress; // Update the address
if (iPass == 2)
{
Console.Write(new string(' ', iAssembledMnemonicPosition));
lstFile.Write(new string(' ', iAssembledMnemonicPosition));
Console.WriteLine(sLine);
lstFile.WriteLine(sLine);
}
}
else // Mnemonic to assemble
{
OperandMode iSim = dataList[iIndexTable].Sym;
// Hexadecimal address directly specifyed after the mnemonic ?
if (iSim == OperandMode.Hex)
{
switch (dataList[iIndexTable].NbByte) // How many byte follow
{
case 0: // No byte following, we only have the opcode
iOpData[0] = dataList[iIndexTable].OpCode;
break;
case 1: // One byte after opcode
iOpData[0] = dataList[iIndexTable].OpCode;
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
sNibble = sLine.Substring(iOffset, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 1, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[1] = 16 * iMsq + iLsq;
break;
case 2: // Two bytes after opcode
iOpData[0] = dataList[iIndexTable].OpCode;
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
sNibble = sLine.Substring(iOffset, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 1, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[1] = 16 * iMsq + iLsq;
sNibble = sLine.Substring(iOffset + 2, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 3, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[2] = 16 * iMsq + iLsq;
break;
default:
// In case the OP code decoding is not implemented
string sOpNotImplemented = $"{new string(' ', 7)}****** NOT IMPLEMENTED BYTE SIZE ******* {sLine.Substring(0, Math.Min(13, sLine.Length))}";
Console.WriteLine(sOpNotImplemented);
lstFile.WriteLine(sOpNotImplemented);
iErrorNumber++;
break;
}
}
// Symbolic address next to mnemonic ?
else if (iSim == OperandMode.Symbol)
{
if (iPass == 2)
{
// Read the symbol
// Compute the offset to the first character of the symbol
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
// Find the next space or the end of the string
//int endIndex = sLine.IndexOf(' ', iOffset);
// Extract the symbol
//string sSymbol = (endIndex == -1) ? sLine.Substring(iOffset) : sLine.Substring(iOffset, endIndex - iOffset);
// Extract the symbol
int endIndex = sLine.Length;
int spaceIndex = sLine.IndexOf(' ', iOffset); // space mark end of symbol
int commaIndex = sLine.IndexOf(',', iOffset); // comma also mark end of symbol
if (spaceIndex != -1 && spaceIndex < endIndex) endIndex = spaceIndex;
if (commaIndex != -1 && commaIndex < endIndex) endIndex = commaIndex;
string sSymbol = sLine.Substring(iOffset, endIndex - iOffset);
// Extract base symbol without offset (+1 or -2)
var baseSymbolMatch = Regex.Match(sSymbol, @"^([A-Za-z_?][A-Za-z0-9_]*)");
if (!baseSymbolMatch.Success)
{
// Invalid symbol format - report error and exit
string sErrorMsg =
$"{new string(' ', 7)}****** ERROR @ line {LineCounter} address 0x{iAddress:X4}, Invalid symbol format: {sSymbol} ******";
Console.WriteLine(sLine);
Console.WriteLine(sErrorMsg);
lstFile.WriteLine(sLine);
lstFile.WriteLine(sErrorMsg);
iErrorNumber++;
iAddress++;
return; // or continue depending on your loop structure
}
string baseSymbol = baseSymbolMatch.Groups[1].Value;
// Check if base symbol exists in the table
if (symbolTable.ContainsKey(baseSymbol))
{
// Parse full expression with offset (if any)
if (ParseSymbolExpression(sSymbol, symbolTable, out int symbolAddress))
{
iOpData[0] = dataList[iIndexTable].OpCode;
int iNbByte = dataList[iIndexTable].NbByte;
if (iNbByte == 2)
{
iOpData[1] = (symbolAddress >> 8) & 0xFF;
iOpData[2] = symbolAddress & 0xFF;
}
else
{
iOpData[1] = symbolAddress & 0xFF;
}
}
else
{
string sErrorMsg =
$"{new string(' ', 7)}****** ERROR @ line {LineCounter} address 0x{iAddress:X4}, Can't resolve symbol {sSymbol} ******";
Console.WriteLine(sLine);
Console.WriteLine(sErrorMsg);
lstFile.WriteLine(sLine);
lstFile.WriteLine(sErrorMsg);
iErrorNumber++;
}
}
else
{
// Base symbol not found in symbol table
string sLineNumber = iAddress.ToString("X");
Console.Write(sLineNumber);
lstFile.WriteLine(sLineNumber);
string sErrorMsg = $"{new string(' ', 7)}****** ERROR @ line {LineCounter} address {iAddress:X4}, Can't find symbol " + sSymbol + " ******";
Console.WriteLine(sLine);
Console.WriteLine(sErrorMsg);
lstFile.WriteLine(sLine);
lstFile.WriteLine(sErrorMsg);
iErrorNumber++;
iAddress++;
}
}
}
// Relative address jump +-127 to be computed from the symbol next to the mnemonic
else if (iSim == OperandMode.Relative)
{
if (iPass == 2)
{
// Read the symbol
// Compute the offset to the first character of the symbol
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
// Find the next space or the end of the string
int endIndex = sLine.IndexOf(' ', iOffset);
// Extract the symbol
string sSymbol = (endIndex == -1) ? sLine.Substring(iOffset) : sLine.Substring(iOffset, endIndex - iOffset);
// Now, to find the address of the symbol:
if (symbolTable.ContainsKey(sSymbol))
{
int symbolAddress = symbolTable[sSymbol].Address;
// Compute the difference beetween symbol address and next operand address to be exectued
int iDiff = symbolAddress - (iAddress + 2);
// Check if outside of addressing range
if ((iDiff < -128) || (iDiff > 127))
{
string sLineNumber = iAddress.ToString("X");
Console.Write(sLineNumber);
lstFile.WriteLine(sLineNumber);
string sErrorMsg = $"{new string(' ', 7)}****** ERROR @ line {LineCounter} address 0x{iAddress:X4}, Relative address {iDiff} ouside -128 to +127 range ******";
Console.WriteLine(sLine);
Console.WriteLine(sErrorMsg);
lstFile.WriteLine(sLine);
lstFile.WriteLine(sErrorMsg);
iErrorNumber++;
iAddress++;
}
// Fill in the operation data array
iOpData[0] = dataList[iIndexTable].OpCode;
byte bRelAddress = (byte)(iDiff & 0xFF);
iOpData[1] = bRelAddress;
}
// Could not find the symbol in the table
else
{
string sLineNumber = iAddress.ToString("X");
Console.Write(sLineNumber);
lstFile.WriteLine(sLineNumber);
string sErrorMsg = $"{new string(' ', 7)}****** ERROR @ line {LineCounter} address 0x{iAddress:X4}, Can't find symbol " + sSymbol + " ******";
Console.WriteLine(sLine);
Console.WriteLine(sErrorMsg);
lstFile.WriteLine(sLine);
lstFile.WriteLine(sErrorMsg);
iErrorNumber++;
iAddress++;
}
}
}
else if (iSim == OperandMode.Ascii)
{
// ---- PASS 1 : advance PC only ----
if (iPass == 1)
{
int iOffsetStartStringDelimiter = dataList[iIndexTable].Offset + iFirstCharacterIndex;
int firstQuote = sLine.IndexOf('"', iOffsetStartStringDelimiter);
int lastQuote = sLine.LastIndexOf('"');
if (firstQuote == -1 || lastQuote <= firstQuote)
{
iErrorNumber++;
continue;
}
int length = lastQuote - firstQuote - 1;
iAddress += length + 1; // +1 for null terminator
}
if (iPass == 2)
{
int startAddress = iAddress;
// Extract quoted string
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
int firstQuote = sLine.IndexOf('"', iOffset);
int lastQuote = sLine.LastIndexOf('"');
if (firstQuote == -1 || lastQuote <= firstQuote)
{
Console.WriteLine("****** ERROR: Missing or invalid ASCII string ******");
lstFile.WriteLine("****** ERROR: Missing or invalid ASCII string ******");
iErrorNumber++;
continue;
}
string text = sLine.Substring(firstQuote + 1, lastQuote - firstQuote - 1);
// Build byte array once
byte[] bytes = new byte[text.Length + 1];
for (int i = 0; i < text.Length; i++)
{
bytes[i] = (byte)text[i];
}
bytes[text.Length] = 0; // NULL terminator
// Emit bytes
foreach (byte b in bytes)
{
//aEeprom[iAddress - iAddressEepromBegin] = b;
if (CheckAndMarkAddress(iAddress, iAddressEepromBegin, aEepromUsed, aEepromOwner, sLine.Trim(), LineCounter, ref iErrorNumber))
{
aEeprom[iAddress - iAddressEepromBegin] = b;
}
iAddress++;
}
WriteListingWithContinuation(startAddress, bytes, sLine, lstFile, toConsole: true);
}
}
// Negative offset to compute next to the mnemonic
if (iSim == OperandMode.Negative)
{
iOpData[0] = dataList[iIndexTable].OpCode;
// Locate start of the numeric offset
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
// Extract everything until ')'
int endIndex = sLine.IndexOf(')', iOffset);
if (endIndex < 0)
{
iErrorNumber++;
return;
}
string sNumber = sLine.Substring(iOffset, endIndex - iOffset).Trim();
int value;
if (!int.TryParse(sNumber, out value))
{
iErrorNumber++;
return;
}
// Validate 8-bit signed range
if (value < -128 || value > 127)
{
Console.WriteLine("Offset out of range (-128..127)");
iErrorNumber++;
return;
}
// Store as 2's complement
iOpData[1] = (byte)((~value + 1) & 0xFF);
/*
switch (dataList[iIndexTable].NbByte) // How many byte follow
{
case 0: // No byte following, we only have the opcode
iOpData[0] = dataList[iIndexTable].OpCode;
break;
case 1: // One byte after opcode
iOpData[0] = dataList[iIndexTable].OpCode;
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
sNibble = sLine.Substring(iOffset, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 1, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[1] = 16 * iMsq + iLsq;
break;
case 2: // Two bytes after opcode
iOpData[0] = dataList[iIndexTable].OpCode;
iOffset = dataList[iIndexTable].Offset + iFirstCharacterIndex;
sNibble = sLine.Substring(iOffset, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 1, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[1] = 16 * iMsq + iLsq;
sNibble = sLine.Substring(iOffset + 2, 1);
getNibble(sNibble, ref iMsq, ref iErrorNumber);
sNibble = sLine.Substring(iOffset + 3, 1);
getNibble(sNibble, ref iLsq, ref iErrorNumber);
iOpData[2] = 16 * iMsq + iLsq;
break;
default:
// In case the OP code decoding is not implemented
string sOpNotImplemented = $"{new string(' ', 7)}****** NOT IMPLEMENTED BYTE SIZE ******* {sLine.Substring(0, Math.Min(13, sLine.Length))}";
Console.WriteLine(sOpNotImplemented);
lstFile.WriteLine(sOpNotImplemented);
iErrorNumber++;
break;
}
// Compute the negative value in 2 complement form
iOpData[1] = (byte)((~iOpData[1] + 1) & 0xFF);
*/
}
}
//if ((iIndexTable != 0) & (iIndexTable != 2)) // Only if not an ORG and not EQU
if ((iIndexTable != 0) && (iIndexTable != 2) && dataList[iIndexTable].Sym != OperandMode.Ascii)
{
if (iPass == 2)
{
// Line number
string sLineNumber = iAddress.ToString("X");
Console.Write(sLineNumber);
lstFile.Write(sLineNumber);
// Assembled result
string sAssembledCode = "";
for (int i = 0; i < dataList[iIndexTable].NbByte + 1; i++)
{
sAssembledCode = sAssembledCode + " " + iOpData[i].ToString("X2");
}
string sAllignedAssembledCode = "";
sAllignedAssembledCode = sAssembledCode.PadRight(iTotalAssembledFieldWidth);
Console.Write(sAllignedAssembledCode);
lstFile.Write(sAllignedAssembledCode);
// Full line with end of line
Console.WriteLine(sLine);
lstFile.WriteLine(sLine);
}
// Store in EEPROM number of bytes and update line number accordingly
for (int i = 0; i < dataList[iIndexTable].NbByte + 1; i++)
{
//aEeprom[iAddress - iAddressEepromBegin] = iOpData[i];
if (CheckAndMarkAddress(iAddress, iAddressEepromBegin, aEepromUsed, aEepromOwner, sLine.Trim(), LineCounter, ref iErrorNumber))
{
aEeprom[iAddress - iAddressEepromBegin] = iOpData[i];
}
iAddress = iAddress + 1;
}
}
}
else
{ // instruction not found
string sLineNumber = iAddress.ToString("X") + " "; // Append a spaceafter line number
Console.Write(sLineNumber);
lstFile.WriteLine(sLineNumber);
string sErrorMsg = $"{new string(' ', 7)}****** ERROR on line {LineCounter} address 0x{iAddress:X4}, Can't find mnemonic: {sLine.Trim()} ******";
Console.WriteLine(sLine);
Console.WriteLine(sErrorMsg);
lstFile.WriteLine(sLine);
lstFile.WriteLine(sErrorMsg);
iErrorNumber++;
iAddress++;
}
}
// If stop on error is enabled and found an error then stop
if ((iPass == 2) && bStopOnError && (iErrorNumber >= 1))
{
break;
}
} // end of file reading
if (iPass == 2)
{
sTemp = "Symbol Table:";
Console.WriteLine(sTemp);
lstFile.WriteLine(sTemp);
int symbolWidth = 20; // Fixed width for symbol name
foreach (var entry in symbolTable)
{
// Truncate or pad the symbol name to exactly `symbolWidth` characters
string symbolName = entry.Key.Length > symbolWidth
? entry.Key.Substring(0, symbolWidth) // Truncate if too long
: entry.Key.PadRight(symbolWidth); // Pad with spaces if too short
// Format output with the symbol and its value (hex)
sTemp = $"{symbolName}{entry.Value.Address:X4}";
Console.WriteLine(sTemp);
lstFile.WriteLine(sTemp);
}
sTemp = "Assembly complete";
Console.WriteLine(sTemp);
lstFile.WriteLine(sTemp);
string sName_msb = Path.Combine(sRepositoryPath, baseFileName + ".bin");
using (BinaryWriter msbFile = new BinaryWriter(new FileStream(sName_msb, FileMode.Create)))
{
foreach (byte value in aEeprom)
{
msbFile.Write(value);
}
}
Console.WriteLine("Data written to file successfully.");
}
}
if (iPass == 1)
{
iErrorNumberPass1 = iErrorNumber;
}
else
{
iErrorNumberPass2 = iErrorNumber;
sTemp = "Number of errors in Pass 1 = " + iErrorNumberPass1;
Console.WriteLine(sTemp);
sTemp = "Number of errors in Pass 2 = " + iErrorNumberPass2;
Console.WriteLine(sTemp);
}
}
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
static int FindFirstNonSpaceCharacter(string input)
{
for (int i = 0; i < input.Length; i++)
{
if (input[i] != ' ')
{
return i;
}
}
// Return -1 if no non-space character is found
return -1;
}
public static int FindInstructionIndex(string sLine, int iFirstCharacterIndex, List<InstrTable> dataList)
{
// Defensive checks
if (string.IsNullOrEmpty(sLine)) return -1;
if (iFirstCharacterIndex < 0 || iFirstCharacterIndex >= sLine.Length) return -1;
// Remove comment portion starting at ';' that is after the mnemonic start
int commentPos = sLine.IndexOf(';', iFirstCharacterIndex);
string codePortion;
if (commentPos >= 0)
{
int len = commentPos - iFirstCharacterIndex;
if (len <= 0) return -1;
codePortion = sLine.Substring(iFirstCharacterIndex, len);
}
else
{
codePortion = sLine.Substring(iFirstCharacterIndex);
}
// Trim whitespace around the mnemonic/operands
string subLine = codePortion.Trim();
for (int iIndexTable = 0; iIndexTable < dataList.Count; iIndexTable++)
{
InstrTable instr = dataList[iIndexTable];
//string pattern = InstrToRegex(instr.StringValue);
//if (Regex.IsMatch(subLine, pattern, RegexOptions.IgnoreCase))
if (instr.Regex.IsMatch(subLine))
{
return iIndexTable; // Found instruction
}
}
return -1; // Not found
}
static void WriteInstructionTable(string path, List<InstrTable> dataList)
{
using (var w = new StreamWriter(path))
{
w.WriteLine("Instruction Table");
w.WriteLine("Mnemonic Opcode Bytes Sym Offset");
w.WriteLine("--------------------------------------------------");
foreach (var i in dataList)
{
w.WriteLine(
$"{i.StringValue,-25} " +
$"{i.OpCode:X2} " +
$"{i.NbByte,1} " +
$"{i.Sym,1} " +
$"{i.Offset,2}"
);
}
}
}
static void WriteRegexTable(string path, List<InstrTable> dataList)
{
using (var w = new StreamWriter(path))
{
foreach (var i in dataList)
{
w.WriteLine($"{i.StringValue}");
w.WriteLine($" Regex: {i.Regex}");
w.WriteLine();
}
}
}
static void WriteListingWithContinuation(
int startAddress,
byte[] bytes,
string sourceLine,
TextWriter lstFile,
bool toConsole = false)
{
const int BYTES_PER_LINE = 16; // Could be made global (for op code too...)
const int BYTE_COLUMN_WIDTH = BYTES_PER_LINE * 3; // "XX "
int address = startAddress;
for (int i = 0; i < bytes.Length; i += BYTES_PER_LINE)
{
int count = Math.Min(BYTES_PER_LINE, bytes.Length - i);
// Build byte field
StringBuilder byteField = new StringBuilder();
for (int j = 0; j < count; j++)
byteField.AppendFormat("{0:X2} ", bytes[i + j]);
string paddedBytes = byteField.ToString().PadRight(BYTE_COLUMN_WIDTH);
bool firstLine = (i == 0);
bool lastLine = (i + count >= bytes.Length);
string addressField = firstLine
? $"{address:X4}"
: " ";
string src = lastLine ? sourceLine : "";