mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 21:00:30 +00:00
16 lines
No EOL
460 B
C#
16 lines
No EOL
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
public class Assembler : Indy.IL2CPU.Assembler.Assembler {
|
|
public override void FlushText(TextWriter aOutput) {
|
|
//aOutput.WriteLine("use32");
|
|
//aOutput.WriteLine("org 0x200000");
|
|
//aOutput.WriteLine("");
|
|
base.FlushText(aOutput);
|
|
}
|
|
}
|
|
} |