Method: Rex::Arch::X86.push_dword
- Defined in:
- lib/rex/arch/x86.rb
.push_dword(val) ⇒ Object
This method generates a push dword instruction.
185 186 187 |
# File 'lib/rex/arch/x86.rb', line 185 def self.push_dword(val) return "\x68" + pack_dword(val) end |