mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
19 lines
499 B
C#
19 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Debug.GDB {
|
|
public class AsmFile {
|
|
protected List<string> mLines = new List<string>();
|
|
|
|
public AsmFile(string aPathname) {
|
|
using (var xReader = new StreamReader(aPathname)) {
|
|
while (!xReader.EndOfStream) {
|
|
mLines.Add(xReader.ReadLine());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|