jos/user/breakpoint.c

11 lines
125 B
C
Raw Normal View History

2018-09-25 09:22:51 -07:00
// program to cause a breakpoint trap
#include <inc/lib.h>
void
umain(int argc, char **argv)
{
asm volatile("int $3");
}