mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 23:01:24 +00:00
Changed Pop and Push as IntructionWithDestination and overrided toString for fixing dword
13 lines
No EOL
300 B
C#
13 lines
No EOL
300 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
[OpCode("pop")]
|
|
public class Pop: InstructionWithDestination{
|
|
public override string ToString()
|
|
{
|
|
return base.mMnemonic + " dword " + this.GetDestinationAsString();
|
|
}
|
|
}
|
|
|
|
} |