mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
20 lines
331 B
C#
20 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Assembler.X86
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public enum InstructionOutputFormat
|
|
{
|
|
/// <summary>
|
|
/// Plain ASM text
|
|
/// </summary>
|
|
ASM,
|
|
|
|
|
|
}
|
|
}
|