SAsmE - OpenSource Smart Asm Editor for PIC18 Asm

Hi all, i just released my first version of SAsmE, it's a cross platform smart editor (with syntax highlighting too of course) for PIC18 Asm with a very nice feature: it can translate brain-struggling asm code into human readable pseudo-code just pressing "Control-Space"... for example code such as

----------------------------- movlw UPLOAD_CHUNK_SERIE movwf bl_counter2,A movlw BL_RAM_BANK movwf FSR0H,A clrf FSR0L,A

-----------------------------

gets translated into more readable

----------------------------- W = UPLOAD_CHUNK_SERIE bl_counter2 = W {A} W = BL_RAM_BANK FSR0H = W {A} FSR0L = 0 {A}

-----------------------------

I hope someone could find it useful... Link:

formatting link

Best Regards, Primiano Tucci

Reply to
p.tucci
Loading thread data ...

Or you could use the free C compiler from Microchip which makes the code= =

even easier to read and much safer if used in combination with MISRA.

--

Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Reply to
Dave

Reply to
p.tucci

ElectronDepot website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.