mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
16 lines
358 B
C#
16 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Assembler.X86;
|
|
using NUnit.Framework;
|
|
|
|
namespace Indy.IL2CPU.Tests.Assembler.X86 {
|
|
[TestFixture]
|
|
public class HaltTests: BaseTest {
|
|
public void TestIt() {
|
|
new Halt();
|
|
Verify();
|
|
}
|
|
}
|
|
}
|