Intel 8051 control flow graph generator 

Here is a script I wrote about two years ago, that produces a graph (using Graphviz) of branches and calls from a 8051 hex file, disassembled with Dis51. This µC can be found, for instance, in Cypress USB bridges, that load the firmware from USB when the device is plugged in, and are used for many kinds of applications (I have a DSL modem and a TV tuner that use them, for instance).

It can be used like this:

dis51 -l [entrypoints list] < firmware.hex > firmware.a51
python graphviz_generator.py firmware.a51 [entrypoints list] > graph.gv
dot -Tgif graph.gv > firmware_graph.gif


("entrypoints list" being a list of whitespace separated addresses, like "0x0000 0x0010", without the quotes)

The graph will look as follows:

- Red circles are functions (branches that update the stack pointer)
- Grey circles are RET statements (end of functions, also modify the SP)
- Blue circles are entrypoints
- Squares are normal branch instruction
- plain lines mean the branch is always taken (or when the branch condition is false)
- dashed lines mean the branch is taken if the branch condition is true (JZ, JNZ ...)
- red dashed lines mean a function call

As a small picture usually talks more than a long text, so here is a really BIG picture.

And finally, the script.
[ view entry ] ( 12946 views ) permalink
WaveMixer RPM package 

WaveMixer is a really nice looking and easy to use multitrack wave editor written by friends of mine. It uses really neat technology like GTK+, Gstreamer and LADSPA. I built the first WaveMixer RPM package for them, and I believe they are now handling them by themselves.

Even if you're not into music authoring, you should really give their software a try, as it's so entertaining !
[ view entry ] ( 8285 views ) permalink
GameCube hacks 

Right after I bought my Nintendo GameCube system, I read every available information about it, and I started to follow the activity of the homebrew community.

Eventually, I also wrote little pieces of code.

As usual, click the following link to get to my collection of homebrew works for the GameCube.

It includes :
- an updated Howto on how to cross-compile demos. It is updated compared to the original version, which was the only one available for a period of time, and which also quickly became outdated.
- a tool that converts any image to a C array or object which can be copied to the framebuffer address for direct display on the TV screen. An example program to display the image is also included.
- a tool that interfaces with the ripping dol that was found someday floating around on the Internet ... It runs on Linux and MacOS X and allows to backup your games to your PC.
- a tool that streams back the game backup to the console, using the ACL dol. This tool is available in two versions :

- the first version has exactly the same features as the Windows version.
- the second version uses zlib. Every backup image is split in packets of 32kB and compressed, before being stored on the disk. When the streaming tool is required a specific file (the request contains the offset and size of the array that needs to be sent), it looks which blocks it needs, decompresses them on the fly, and sends the decompressed response to the console. This technique is really fast (bottleneck here is the network), it saves much diskspace (some backups shrink from 1.4GB to less than 400MB), and more important, it keeps the backup intact, as the compression is indeed non destructive (compared to the "regular" backup shrink tools, which simply rewrite the filesystem table and move the files).

Note : You are the only person responsible for the use you make of this software. Illegal usage is not encouraged by this webpage.
[ view entry ] ( 17563 views ) permalink
French Bluetooth introduction 

This is an introduction to the Bluetooth protocol stack, IP over Bluetooth, and seamless reconnection while moving a Bluetooth device among many access points. It is written in french.

You can click here to read my French Bluetooth introduction.
[ view entry ] ( 10945 views ) permalink
Linupy 2.0.7 port to Yopy 3000 

The goal was to bring the latest distribution from Gmate to the Yopy 3000, as they didn't plan to do it themselves...

Unfortunately, as the size of the (compressed) filesystem is over 17MBytes and the device only has 16MBytes of ROM, i had to move some parts of it to the MMC card. Thus, you'll have to have one in order to benefit from the full features of this distro.

You can click here to get Linupy 2.0.7 port to Yopy 3000.
[ view entry ] ( 10060 views ) permalink

<<First <Back | 1 | 2 | 3 | 4 | Next> Last>>