{  File: [Iris]<WMicro>DLion>Buffer.asm
Modification History:
	Grundler.PA:	 6-Oct-84  0:12:59: Fix copyright notice to include 1984.
	Grundler.PA:	 1-Sep-84 18:44:08: Add copyright notice.
	Grundler.PA:	14-Nov-83 14:45:03: Fix buffer sizes.
	Fasnacht.PA:   8-Nov-83  9:55:59: Remove Burdock and Start code.
	Grundler.PA:   9-Oct-83 13:28:03: Fix up kludges.
	Grundler.PA:  26-Sep-83 22:54:07: Fold in Hals changes for Burdock.
	Grundler.PA:  12-Apr-83 20:08:14: Overlay the voice and RS232C Buffers.
	Jim Frandeen:  September 15, 1982  4:53 PM: Initialize KeyMap in the IO Page.
	Jim Frandeen:  August 9, 1982  4:15 PM: Add BlockBuffer for Processor ReadBlock and WriteBlock commands. Put initial code and Burdock code in the Floppy buffer.
	Jim Frandeen:  April 22, 1982  1:05 PM: Rewrite RS232C
}

{ 	Copyright (C) 1982, 1983 by Xerox Corporation.  All rights reserved.}


{  This file contains the allocation of the large buffer areas for Domino.  The buffers are allocated at the end of the code, so that they do not take up room during the loading of Domino during booting.  NO CODE SHOULD RESIDE IN THIS MODULE.  This module should always be the LAST module in the Domino
configuration. }

	GET	"RS232CDefs.asm"
	GET	"SysDefs.asm"
	GET	"CommonDefs.asm"

	EXP	BurdockDataBuffer	;Burdock.asm
	EXP	EndFDBuffer	; FloppyTask buffer
	EXP	RxFIFO	 	; For RS232CTask
	EXP	StartFDBuffer	; FloppyTask buffer
	EXP	SpeechOutBuffer0	; From Buffer
	EXP	SpeechOutBuffer1	; From Buffer
	EXP	SpeechInBuffer0		; From Buffer
	EXP	SpeechInBuffer1		; From Buffer
	EXP	TxBuffer

; Voice equates to eventually go into SysDefs.asm
VoiceBufferSize	EQU	512
TxRemBufferSize	EQU	TxBufferSize-(2*VoiceBufferSize)
VBSMinusTxRBS	EQU	VoiceBufferSize-TxRemBufferSize
RxRemBufferSize	EQU	RxFifoSize-VoiceBufferSize-VBSMinusTxRBS

; RS232C Task Buffers
TxBuffer:
	DS	RxFifoSize+TxBufferSize
;	DS	4*VoiceBufferSize	(whichever is greater)

SpeechOutBuffer0	EQU	TxBuffer
SpeechOutBuffer1	EQU	SpeechOutBuffer0+VoiceBufferSize
SpeechInBuffer0		EQU	SpeechOutBuffer1+VoiceBufferSize
SpeechInBuffer1		EQU	SpeechInBuffer0+VoiceBufferSize
RxFIFO			EQU	TxBuffer+TxBufferSize

;
{  Floppy Task buffers:
Note that the Start code and the Burdock code is in the Floppy buffers. This means that the Burdock code cannot be used if the Floppy has been used. 

(Each buffer is large enough to hold a one page sector):
(The area from StartFDBuffer to EndFDBuffer can hold 4 standard Sectors)}
;
BufferSize	EQU	2048
StartFDBuffer:
BurdockDataBuffer:

{For the copyright notice to be readable in the microcode file every other character has to be switched.  Also it is important that the copyright notice begin on an even boundary.}

CopyrightNotice:
	DB	"oCypirhg tC( )9108 ,9118 ,9128 ,9138 ,9148b  yeXor xoCprrotaoi.n  lA lirhgstr sereev.d"
EndOfCopyrightNotice:

CopyrightNoticeLength	EQU	EndOfCopyrightNotice-CopyrightNotice

	ds	BufferSize-CopyrightNoticeLength
;
EndFDBuffer:
	ds	0


;-----------------------------------------------------
NextLoc:
	ds	1		;  Next free location
	END	Buffer