annotate src/isr.inc @ 526:0d1cda9f2d43

BUGFIX: Skip MOD Test for CCR in Sensor modes (OSTC cR and OSTC3 only) CHANGE: Swap positions of ppO2(O2) and ppO2(Dil) in customview 10 on screen. "left = lean" and "right = rich" BUGFIX: A wrong configured gas was suggested as "Better gas" on the configured depth even if this resulted in a ppO2 high or low condition
author heinrichsweikamp
date Sat, 05 Aug 2017 16:50:28 +0200
parents 11d4fc797f74
children ca4556fb60b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File isr.inc
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ;
heinrichsweikamp
parents:
diff changeset
6 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
7 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
8 ; HISTORY
heinrichsweikamp
parents:
diff changeset
9 ; 2011-08-06 : [mH] moving from OSTC code
heinrichsweikamp
parents:
diff changeset
10
heinrichsweikamp
parents:
diff changeset
11 SAFE_2BYTE_COPY MACRO from, to
heinrichsweikamp
parents:
diff changeset
12 local retry
heinrichsweikamp
parents:
diff changeset
13 retry:
heinrichsweikamp
parents:
diff changeset
14 movff from+1,WREG ; High byte in W.
heinrichsweikamp
parents:
diff changeset
15 movff WREG,to+1 ; and destination.
heinrichsweikamp
parents:
diff changeset
16 movff from+0,to+0 ; Copy low byte.
heinrichsweikamp
parents:
diff changeset
17 movff from+1,TABLAT ; another bank-safe read.
heinrichsweikamp
parents:
diff changeset
18 xorwf TABLAT,W ; High byte changed ?
heinrichsweikamp
parents:
diff changeset
19 bnz retry
heinrichsweikamp
parents:
diff changeset
20 ENDM