mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 00:38:55 +00:00
54ada0d893
- Fix test examples
10 lines
161 B
Perl
Executable File
10 lines
161 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
require 'r_bp.pm';
|
|
|
|
$a = new r_bp::RBreakpoint ();
|
|
$a->use ("x86");
|
|
$a->add_hw (0x8048000, 10, 0);
|
|
$a->add_sw (0x8048000, 10, 0);
|
|
$a->list (0);
|