mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
8 lines
202 B
C#
8 lines
202 B
C#
namespace Cosmos.Assembler.x86 {
|
|
|
|
// See note in Int3 as to why we need a separate op for Int1 versus Int 0x01
|
|
[Cosmos.Assembler.OpCode("Int1")]
|
|
public class INT1: Instruction {
|
|
}
|
|
|
|
}
|