We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb1c75d commit d2597e3Copy full SHA for d2597e3
lib/ronin/asm/x86_64.rb
@@ -163,19 +163,19 @@ def rbp = Registers::RBP
163
#
164
# @see rbp
165
166
- def stack_base; Registers::RBP; end
+ def stack_base = Registers::RBP
167
168
169
# The Stack Pointer register.
170
171
# @see rsp
172
173
- def stack_pointer; Registers::RSP; end
+ def stack_pointer = Registers::RSP
174
175
176
# Generates the instruction to invoke a syscall.
177
178
- def syscall; instruction(:syscall); end
+ def syscall = instruction(:syscall)
179
end
180
181
0 commit comments