2018-06-01 19:13:53 +03:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Risc
|
2018-06-02 21:59:41 +03:00
|
|
|
class Dummy
|
|
|
|
def padded_length
|
|
|
|
4
|
2018-06-01 19:13:53 +03:00
|
|
|
end
|
2018-06-05 18:11:25 +03:00
|
|
|
def byte_length
|
|
|
|
4
|
|
|
|
end
|
2018-06-01 19:13:53 +03:00
|
|
|
end
|
2018-06-02 23:48:12 +03:00
|
|
|
class DummyInstruction < Dummy
|
|
|
|
include Util::List
|
2018-06-05 18:11:25 +03:00
|
|
|
def initialize(nekst = nil)
|
|
|
|
@next = nekst
|
|
|
|
end
|
2018-06-02 23:48:12 +03:00
|
|
|
end
|
2018-06-01 19:13:53 +03:00
|
|
|
end
|