mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
10 lines
No EOL
157 B
C#
10 lines
No EOL
157 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.Compiler.Assembler.X86
|
|
{
|
|
[OpCode("hlt")]
|
|
public class Halt : Instruction
|
|
{
|
|
}
|
|
} |