-
Notifications
You must be signed in to change notification settings - Fork 6
Breakpoints
ζeh Matt edited this page Apr 11, 2019
·
1 revision
Creates a software breakpoint at the specified address.
-- @param address virtual address as integer
-- @return boolean success
bps.add(address)
Removes a software breakpoint at the specified address.
-- @param address virtual address as integer
-- @return boolean success
bps.remove(address)
Disables a software breakpoint at the specified address.
-- @param address virtual address as integer
-- @return boolean success
bps.disable(address)