mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 18:51:41 +00:00
21 lines
415 B
C#
21 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Lost.JIT.AMD64;
|
|
//using Cosmos.Build.Windows;
|
|
|
|
namespace Lost
|
|
{
|
|
class LostTest
|
|
{
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
var op = ProcessorInstruction.Parse("test: ggf1: lock adc 10, 12,");
|
|
Console.WriteLine(op);
|
|
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|