home *** CD-ROM | disk | FTP | other *** search
- load 8052.dll
- load traffic
- include dbg_tiny.dsw
- /* define watch variables */
- ws red
- ws yellow
- ws green
- ws stop
- ws walk
- /* set P1.5 to zero: Key Input */
- STIME=1
- PORT1 &= ~0x20;
-
- /* define a debug function for the pedestrian push button */
-
- signal void pushbutton (void) {
- PORT1 |= 0x20; /* set Port1.5 */
- twatch (50000); /* wait 50 ms */
- PORT1 &= ~0x20; /* reset Port1.5 */
- }
-
- /* define tool bar button as call to pushbutton () */
- define button "Push Button","pushbutton ()"
-