mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
17 lines
379 B
C#
17 lines
379 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.AssemblerTests.X86 {
|
|
[TestFixture]
|
|
public class HaltTests: BaseTest {
|
|
[Test]
|
|
public void TestIt() {
|
|
new Halt();
|
|
Verify();
|
|
}
|
|
}
|
|
}
|