Skip to content

Breakpoints

ζeh Matt edited this page Apr 11, 2019 · 1 revision

Functions

add

Creates a software breakpoint at the specified address.

-- @param address virtual address as integer
-- @return boolean success
bps.add(address)

remove

Removes a software breakpoint at the specified address.

-- @param address virtual address as integer
-- @return boolean success
bps.remove(address)

disable

Disables a software breakpoint at the specified address.

-- @param address virtual address as integer
-- @return boolean success
bps.disable(address)
Clone this wiki locally