disabling mpasm status window

Discuss the Integrated Development Environment (IDE)

Moderators: David Barker, Jerry Messina

Post Reply
Jerry Messina
Swordfish Developer
Posts: 1469
Joined: Fri Jan 30, 2009 6:27 pm
Location: US

disabling mpasm status window

Post by Jerry Messina » Fri Nov 15, 2019 11:18 am

By default, the compiler now displays a status box while mpasm assembles the file.

If you wish to disable this feature, edit the file bin\SwordfishICC.ini and change the lines

Code: Select all

; show mpasm progress window while it assembles (adds '/s' to the commandline)
; 	0=do not show
;	1=show (default)
;show_window=1
to

Code: Select all

; show mpasm progress window while it assembles (adds '/s' to the commandline)
; 	0=do not show
;	1=show (default)
show_window=0

Post Reply