mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 06:10:13 +00:00
11 lines
295 B
C#
11 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
public class Assembler : Indy.IL2CPU.Assembler.Assembler {
|
|
public Assembler(StreamWriter aOutputWriter) : base(aOutputWriter) {
|
|
}
|
|
}
|
|
}
|