



The Table Driven Assembler (TDASM) is a free portable cross assembler for any kind of assembly language. It should be possible to use it as a compiler to any target microprocessor using a table that defines the compilation process.
This project is under developement at school, so many features are not implemented yet. You can download and try developement version. There are two examples of tables that define compilation process to procesors Intel x86 and Zilog Z80. Tables are not complete, they serve only as an ilustration what the implemented prototype can do.
tar zxvf tdasm-?.?.?.tar.gz
./configure
to create makefiles for your system make
/usr/local/bin
by executing make install
tdasm
The result of execution is an output binary file source_file.out
and a file with listing source_file.lst
.
Tabular description of Intel x86 | |
Test source code for Intel x86 | |
Tabular description of Zilog Z80 | |
Test source code for Zilog Z80 | |
Source code of latest snapshot | |
Binary executable code for Linux 2.2 i386 | |
Binary executable code for DOS/Windows |
Java Native Interface (JNI) is a mechanism that can be used to establish communication between native language programs and the Java virtual machine. The documentation for JNI and the technical literature on JNI deal extensively with interactions between the JVM and C/C++ code. The Java SDK even provides a utility to generate a header file to facilitate calling C/C++ programs from Java code. However, there is hardly any mention of Java and assembly language code working together. In an earlier article I showed how assembly language programs can be called from Java applications. Here I deal with the technique for invoking Java programs from an ASM process through a demo application that calls a Java method from assembly language code. The Java method brings up a Swing JDialog
to show that it has, indeed, been launched.
Note that the technique shown here can also be used to call Java code from languages other than ASM. If JInvoke
is rewritten as a .dll, code written in FORTRAN, for instance, can link to it and call a Java method.
I have used JNI with legacy ASM code in two ways:
These enhanced applications have run on Windows 2000 and XP. The Java versions used
whttp://blogs.sun.com/CoreJavaTechTips/entry/launch_java_applications_from_assemblyere 1.3, 1.4, and 1.6. In all cases the applications worked smoothly.