; make four squares four ways
64 SETCON 3 ; Turn on the 4 PWMs
; 250 Hz
65 PP0 = 48 ; Set the Period to 48 ticks, 4uS
66 PW0 = PP0 / 2 ; Set the Period to 24 ticks, 2uS
; 500 Hz
67 PP1 = 24 ; Set the Period to 24 ticks, 2uS
68 PW1 = PP1 / 2 ; Set the Period to 12 ticks, 2uS
; 1000 Hz
69 PP2 = 12 ; Set the Period to 12 ticks, 1uS
70 PW2 = PP2 / 2 ; Set the Period to 6 ticks, 2uS
; 2000 Hz
71 PP3 = 6 ; Set the Period to 6 ticks, .5uS
72 PW3 = PP3 / 2 ; Set the Period to 3 ticks, 2uS
;
73 END