Can someone explain me how i can set up a breakpoint in my assembly program that ends my program on the breakpoint the command is SETB P3.3 Thx in advance
A breakpoint doesn't end the program - it just returns control to the debugger. The user can then issue debugger commands to resume execution, terminate, step, etc, etc To set a breakpoint in uVision, just double-click the line where you want the breakpoint; or use the BREAKSET (BS) command - see the online help.