I'm currently using the following:

EEPromIndex var WORD

EEPromIndex=0
I2CRead SDA,SCL,rddev,EEPromIndex,[NextCard.HighByte,NextCard.LowByte]

One would think you could use the following w/o the variable and get the same results:

I2CRead SDA,SCL,rddev,0,[NextCard.HighByte,NextCard.LowByte]

However the program stalls out at that line if I go without the variable. Thoughts?