mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
8 lines
194 B
C#
8 lines
194 B
C#
namespace Cosmos.Compiler.Assembler.X86 {
|
|
|
|
// See note in Int3 as to why we need a separate op for Int1 versus Int 0x01
|
|
[OpCode("Int1")]
|
|
public class Int1: Instruction {
|
|
}
|
|
|
|
}
|