Well, since SMA is certainly not the only buggy program trying to write to MaxHandles+$24+$11, I have added a workaround to the RAM_CALL relocation code:
;Catch the alpha-lock hack and have the program write its crap to a harmless LCD address instead...
moveq.l #-$16+$24+$11,d0
tst.b d7
beq.s \reloc
add.w #$fc,d0
\reloc
tst.w d2 ; Test bit 15 (Word / Long Word flag)
blt.s \word
cmp.w #$11,d2 ; is this Heap?
bne.s \noalpha1
move.w #$fc,d4
cmp.l 0(a5,d3.l),d0
bne.s \noalpha1
move.w #$4c00+29-(-$16+$24+$11),d4
\noalpha1
add.l d4,0(a5,d3.l) ; Reloc a Long Word : add d4.l to the address
bra.s \loopRAM
\word cmp.w #$11,d2 ; is this Heap?
bne.s \noalpha2
move.w #$fc,d4
cmp.w 0(a5,d3.l),d0
bne.s \noalpha2
move.w #$4c00+29-(-$16+$24+$11),d4
\noalpha2
add.w d4,0(a5,d3.l) ; Reloc a word : add d4.w to the address
bra.s \loopRAM
\loopRAMend dbra d5,fonctionRAM ; Continue for all the imported ramcalls
Note that my code doesn't try to actually enable alpha-lock. (Alpha-lock sucks anyway.

)