I'm attempting to configure a Dallas 5000 series chip to work with 512k of external memory in "contiguous mode". Here are my memory classes, hopefully indicating a 1k spot (for my stack!) and a code/data partition at 128k:
START END USED MEMORY CLASS ========================================================== X:000400H X:0007FFH 000400H XDATA X:000400H X:0007FFH 000001H HDATA X:020000H X:07FFFFH C:001400H C:00FFFFH 00003CH CODE C:001400H C:01FFFFH 0000BBH ECODE C:001400H C:01FFFFH HCONST
?STACK SEGMENT XDATA AT 0400H RSEG ?STACK DS 1024
error C249: 'FDATA': SEGMENT TOO LARGE
char far s1[0xffff]; /* line 1 */ /* char far s2[0xffff]; */ /* line 2 */
Do you really mean "Dallas 5000" device? That is, the DS5000? I ask because these devices do not have a contiguous mode. Jon
Oops, I thought they did due to the references in the STARTUP390.A51 file. At any rate, I'm using the DS5250, which is supposed to have such a mode.