This code, for example, would try to put a hole into
0, 90, 180, and 270 degrees in the OD and would look something like this:
;
T101; (pick tool 1)
M14; (clamp spindle brake)
M154; (c axis engage)
G98 (feed/minute)
G00 X1.0 (rapid T101 to x1.0)
#101=0; (variable for c axis degree)
WH [#101LT360] DO1;
G01 C#101 F500; (rotate spindle #101 degrees at 500RPM)
G01 X0.75 F2.; (drill into OD down to 0.75")
G00 X1.0; (retract)
#101=#101+90
END1; (end of loop)
G01 C0. F500.; (return C axis to zero)
M15; (unclamp spindle brake)
M155; (c axis disengage)