Index: prolog/fsmain.s
===================================================================
--- prolog/fsmain.s	(revision f40a3096572fd1b0696a7f7c717464e68652e655)
+++ prolog/fsmain.s	(revision ef7ae7edeb838c645976b57d7031eb5da28e086b)
@@ -1,125 +1,125 @@
-* ------------------------------------------------------------------------------
-* fsmain.s -- startup code for the Buchla 700 standalone C runtime library
-* Version 3 -- 1987-06-29 -- D.N. Lynx Crowe
-*
-*	This code clears 'bss' space, sets up some global variables,
-*	and calls Croot(), which sets up the file system and calls main().
-*
-*	This routine should be entered with the address of the basepage
-*	as its parameter.
-* ------------------------------------------------------------------------------
+| ------------------------------------------------------------------------------
+| fsmain.s -- startup code for the Buchla 700 standalone C runtime library
+| Version 3 -- 1987-06-29 -- D.N. Lynx Crowe
+
+|	This code clears 'bss' space, sets up some global variables,
+|	and calls Croot(), which sets up the file system and calls main().
+
+|	This routine should be entered with the address of the basepage
+|	as its parameter.
+| ------------------------------------------------------------------------------
 		.text
-*
+
 		.xdef	start_
-*
+
 		.xref	_Croot
-*
+
 		.xdef	_panic
 		.xdef	_brk
-*
+
 		.xdef	__heap
 		.xdef	__break
 		.xdef	__pmesg
-*
+
 		.xdef	_errno
-*
-p_bbase		.equ	$18		* bss base
-p_blen		.equ	$1C		* bss length
-*
+
+p_bbase		=	0x18		| bss base
+p_blen		=	0x1C		| bss length
+
 		.page
-*
-* start_ -- Initial entry point -- Must be first object file in link statement
-* ------    ------------------------------------------------------------------
-*
-* WARNING:  Hazardous assumptions
-*
-* We assume that: 
-*
-* 	the system has set the stack pointer for us.
-* 	the system passed us a pointer to a valid basepage.
-* 	the stack is above the heap.
-*	BSS is located in RAM.
-*
-* If any of these assumptions is in error, we're in for serious trouble.
-*
-start_:		clr.l	a6		* Clear frame pointer
-		movea.l	4(a7),a1	* Set pointer to base page
-		movea.l	p_bbase(a1),a0	* Setup to clear bss space
-*
-start1:		clr.w	(a0)+		* Clear a word
-		cmpa.l	a0,a7		* See if we're done
-		bne	start1		* Loop if not done yet
-*
-		move.l	p_bbase(a1),d0	* Calculate break address
-		add.l	p_blen(a1),d0	* ...
-		move.l	d0,__break	* Set initial break
-		move.l	d0,__heap	* Set heap start
-*
-		move.l	#0,-(a7)	* Pass NULL to Croot  (no command line)
-		jsr	_Croot		* call Croot() routine
-		addq.l	#4,a7		* ...
-*
-		move.l	#pmsg1,-(a7)	* panic(pmsg1);
-		jsr	_panic		* ...
-		addq.l	#4,a7		* ...
-*
-hstop:		stop	#$2000		* "Die, sucker!"
+
+| start_ -- Initial entry point -- Must be first object file in link statement
+| ------    ------------------------------------------------------------------
+
+| WARNING:  Hazardous assumptions
+
+| We assume that:
+
+| 	the system has set the stack pointer for us.
+| 	the system passed us a pointer to a valid basepage.
+| 	the stack is above the heap.
+|	BSS is located in RAM.
+
+| If any of these assumptions is in error, we're in for serious trouble.
+
+start_:		movea.l	#0,a6		| Clear frame pointer
+		movea.l	4(a7),a1	| Set pointer to base page
+		movea.l	p_bbase(a1),a0	| Setup to clear bss space
+
+start1:		clr.w	(a0)+		| Clear a word
+		cmpa.l	a0,a7		| See if we're done
+		bne	start1		| Loop if not done yet
+
+		move.l	p_bbase(a1),d0	| Calculate break address
+		add.l	p_blen(a1),d0	| ...
+		move.l	d0,__break	| Set initial break
+		move.l	d0,__heap	| Set heap start
+
+		move.l	#0,-(a7)	| Pass NULL to Croot  (no command line)
+		jsr	_Croot		| call Croot() routine
+		addq.l	#4,a7		| ...
+
+		move.l	#pmsg1,-(a7)	| panic(pmsg1);
+		jsr	_panic		| ...
+		addq.l	#4,a7		| ...
+
+hstop:		stop	#0x2000		| "Die, sucker!"
 		bra	hstop
-*
+
 		.page
-*
-* _panic -- hard halt for fatal errors
-* ------    --------------------------
-_panic:		movea.l	4(a7),a0	* Save panic message address
-		move.l	a0,__pmesg	* ...
-*
-		trap	#15		* Invoke ROMP  (we hope ...)
-*
-pstop:		stop	#$2700		* HARD HALT
+
+| _panic -- hard halt for fatal errors
+| ------    --------------------------
+_panic:		movea.l	4(a7),a0	| Save panic message address
+		move.l	a0,__pmesg	| ...
+
+		trap	#15		| Invoke ROMP  (we hope ...)
+
+pstop:		stop	#0x2700		| HARD HALT
 		bra	pstop
-*
+
 		.page
-*
-* _brk -- set break value
-* ----    ---------------
-* WARNING:  This only works if the stack is above the heap.
-*
-_brk:		cmpa.l	__break,a7	* compare current break with stack
-		bcs	pstop		* actual stack overflow!
-*
-		movea.l	4(sp),a0	* get new break
-		move.l	a0,d0		* compare with current stack,
-		adda.l	#$100,a0	* ... including 256-byte slop factor
-		cmpa.l	a0,a7		* if (sp < a0+256)
-		bcs	badbrk		* 	bad break;
-*
-		move.l	d0,__break	* OK break: save the break
-		clr.l	d0		* Set OK return
-		rts			* return
-*
-badbrk:		moveq.l	#-1,d0		* Load return reg
-		rts			* Return
-*
+
+| _brk -- set break value
+| ----    ---------------
+| WARNING:  This only works if the stack is above the heap.
+
+_brk:		cmpa.l	__break,a7	| compare current break with stack
+		bcs	pstop		| actual stack overflow!
+
+		movea.l	4(sp),a0	| get new break
+		move.l	a0,d0		| compare with current stack,
+		adda.l	#0x100,a0	| ... including 256-byte slop factor
+		cmpa.l	a0,a7		| if (sp < a0+256)
+		bcs	badbrk		| 	bad break;
+
+		move.l	d0,__break	| OK break: save the break
+		clr.l	d0		| Set OK return
+		rts			| return
+
+badbrk:		moveq.l	#-1,d0		| Load return reg
+		rts			| Return
+
 		.page
-*
-*************************************************************************
-* 		Data Area						*
-*************************************************************************
-*
+
+|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+| 		Data Area						|
+|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+
 		.data
-*
-pmsg1:		dc.b	'  returned from Croot() ',0
-*
-*************************************************************************
-* 		BSS Area						*
-*************************************************************************
-*
+
+pmsg1:		dc.b	"  returned from Croot() ",0
+
+|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+| 		BSS Area						|
+|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+
 		.bss
 		.even
-*
-__pmesg:	ds.l	1	* panic() message string address
-__heap:		ds.l	1	* Heap start  (initial break)
-__break:	ds.l	1	* Current break location
-_errno:		ds.w	1	* System error number
-*
+
+__pmesg:	ds.l	1	| panic() message string address
+__heap:		ds.l	1	| Heap start  (initial break)
+__break:	ds.l	1	| Current break location
+_errno:		ds.w	1	| System error number
+
 	.end
