Assembly Language - General Init

From NerdConsole
Jump to navigationJump to search
; Purpose: General initialization.
; For: NerdConsole (65C02 Assembly, ca65 format)
; By: David Stephens (NerdOfEpic)
; License: Public Domain - Can be used or modified by anyone 
;                          for any purpose.


	cld        ; Make sure we aren't in BCD mode
	sei        ; Allow interrupts

	; Make sure the stack pointer is in the right place
	ldx #$FF
	txs

Back to the list of Assembly Language files.