9 lines
103 B
Ruby
9 lines
103 B
Ruby
|
|
class RegisterView
|
|
|
|
@@register_names = (0..8).collect {|i| "r#{i}"}
|
|
|
|
def initialize max
|
|
end
|
|
end
|