1; GEOS KERNAL by Berkeley Softworks
2; reverse engineered by Maciej Witkowiak, Michael Steil
3;
4; Memory utility functions: i_FillRam
5
6.include "const.inc"
7.include "geossym.inc"
8.include "geosmac.inc"
9.include "config.inc"
10.include "gkernal.inc"
11.include "c64.inc"
12
13.import _FillRam
14.import GetMDataDatas
15
16.import DoInlineReturn
17
18.global _i_FillRam
19
20.segment "memory3"
21
22;---------------------------------------------------------------
23; i_FillRam                                               $C1B4
24;
25; Same as FillRam with data after the jsr
26;---------------------------------------------------------------
27_i_FillRam:
28	PopW returnAddress
29	jsr GetMDataDatas
30	jsr _FillRam
31	php
32	lda #6
33	jmp DoInlineReturn
34