Hi guys, I've unearthed the sx28 sx48 and I bought earlier. It has become a SX End of Life Notice in badly delayed configuration. But I will deliver performance close to the recent high-performance device.
Work by rewriting the part of the code is to you, but precise behavior can not be expected. https://www.parallax.com/product/sx48bd-g >From the sample code in the SX-Source-Code-Archive How would need to do to create a sx28.jal and sx48.jal? Similar varieties 16F72->sx28 RA-3 RB0-7 PROG_2048w RAM_136 16F74->sx48 RA-3 RE0-7 PROG_4096w RAM_262 ------------------------------------------ chipdef_jallib.jal Example contents -- const SX_12 = 4 const word PIC_sx28 = 0x6F57 const word PIC_sx48 = 0x6F59 ------------------------------------------ sx28.jal Example contents -- const word DEVICE_ID = 0x00A0 const byte PICTYPE[] = "16F72" const byte DATASHEET[] = "39597C" const byte PGMSPEC[] = "39588A" pragma target cpu PIC_14 -- (banks=4) pragma target chip sx28 ;pragma target chip 16f72 pragma target bank 0x0080 pragma target page 0x0800 pragma stack 8 pragma code 2048 -- (words) pragma ID 0x2000,4 pragma data 0x20-0x7D,0xA0-0xBF pragma shared 0x7E-0x7F ------------------------------------------ -- You received this message because you are subscribed to the Google Groups "jallib" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/jallib. For more options, visit https://groups.google.com/d/optout.
