G-Code Generator

Hello,

I am trying to create a simple drill cycle g-code but I'm not getting what I expect.

The code is simple, drill 6 holes using the dwell canned cycle

N5 G0 X0 Y0 Z0.5  ; Safe height 
N10 M3                  ; Start spindle clockwise (looking from above down)
N15 S2800              ; Spindle RPM
N20 G4 P60             ; wait for 60 seconds
N25 G20                  ; Units in inch
N30 G91
N35 G0 X0Y0
N40 X-0.125 Y0.00984246
N45 G82 Z-0.75R0.25P0.1F3
N50 X0.621894 Y0.245677
N55 X0.150779 Y-0.00712134
N60 X0.151531 Y-0.0930568
N65 X0.0239103 Y-0.221088
N70 X-0.0543536 Y-0.141947
N75 G80
N80 G0 Z.25           ;
N85 G0 X0 Y0 Z0.5  ; Safe height 
N90 M30                ; Rewind program

 

I expect to see G82 called out for all 6 holes (N40 - N70). Is there a setting I need to deal with, or is this just the software's limitation?

Much appreciate it...