mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
17 lines
390 B
C#
17 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
[OpCode(0xFFFFFFFF, "mul")]
|
|
public class Multiply: Instruction {
|
|
public readonly string Address1;
|
|
public Multiply(string aAddress1) {
|
|
Address1 = aAddress1;
|
|
}
|
|
public override string ToString() {
|
|
return "mul " + Address1;
|
|
}
|
|
}
|
|
}
|