Code: Select all
exxoscpucheck:
move.l $59e.w,d0
cmpi.w #$0,d0 /* #$0020,d0 */
bhi.s IsHigher
exxoswarn:
move.w #$0000,d0
move.l #infoText,-(sp)
move.w #9,-(sp)
trap #1 /* Cconws()*/
addq.w #6,sp
IsHigher:
DATA
infoText: dc.b 'Hello World',0
TEXTSo it seems to be doing the opposite to what is intended :lol:
It outputs hello world on a 030 system, when should only do that on a 68000 system :roll:
EDIT:
Oh I think
Code: Select all
move.l $59e.w,d0Code: Select all
move.w $59e.w,d0
