mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
19 lines
No EOL
381 B
C#
19 lines
No EOL
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
[OpCode(0xFFFFFFFF, "call")]
|
|
public class Call: Instruction {
|
|
public readonly string Address;
|
|
|
|
public Call(string aAddress) {
|
|
Address = aAddress;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "call " + Address;
|
|
}
|
|
}
|
|
} |