mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
12 lines
290 B
C#
12 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86.X {
|
|
public class ConstantAction : Action {
|
|
public ConstantAction(UInt32 aValue) {
|
|
mValue = aValue.ToString();
|
|
}
|
|
}
|
|
}
|