Maker Pro
Maker Pro

FAT - mp3

D

david

Jan 1, 1970
0
hi there im looking for FAT routines in ASM type code for a pic.

I built this http://www.walrus.com/~raphael/html/mp3.html

but I would like to expand it a bit. he claims to have a full FAT table but
it is in C
and I dont want to go that way so if anyone can point me to an asm it would
help.


DAvid
 
G

GaMu

Jan 1, 1970
0
david said:
hi there im looking for FAT routines in ASM type code for a pic.

I built this http://www.walrus.com/~raphael/html/mp3.html

but I would like to expand it a bit. he claims to have a full FAT table but
it is in C
and I dont want to go that way so if anyone can point me to an asm it would
help.

All a C compiler does is convert C into Assembler, then assemble it.
Most C compilers have an option to either stop after the conversion or
to not delete the intermediate ASM file(s). So you should be able to
convert the C source to ASM source.

GM
 
D

david

Jan 1, 1970
0
I built this http://www.walrus.com/~raphael/html/mp3.html
All a C compiler does is convert C into Assembler, then assemble it.
Most C compilers have an option to either stop after the conversion or
to not delete the intermediate ASM file(s). So you should be able to
convert the C source to ASM source.

thanks for that but I was hoping for asm code with comments not C
but as you say meybe i will have to go that way

Thanks

David
 
Top