10 lines
163 B
Ruby
10 lines
163 B
Ruby
|
module Mom
|
||
|
|
||
|
#SlotMove is a SlotLoad where the right side is a slot, just like the left.
|
||
|
class SlotMove < SlotLoad
|
||
|
def to_risc(compiler)
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|