Recent content by sdscott

  1. S

    08M2 and BCD bytes

    Sweet! Thank you AllyCat
  2. S

    08M2 and BCD bytes

    I am attempting to INC/DEC a BCD byte variable within my picaxe08m2 code. I could convert to binary using BCDTOBIN, then inc binByte, then convert the variable-byte back to BCD using BINTOBCD; but I'm using the 08M2, which doesn't support these conversion commands. A while ago I seen a post...
  3. S

    this picaxe08M code isnot efficient

    How can I make this code segment more efficient to use less programming memory? if b3=$2D then let b3=$0A endif if b4=$2D then let b4=$0A endif if b5=$2D then let b5=$0A endif if b3=$32 then let b3=$0F endif if b4=$32 then let b4=$0F endif if b5=$32 then let...
Top