Open Motorola Toolkit --------------------- 1. The assembler compiler asmc Learn by example! For an assembler example see examples/*asm. A brief list of asmc language constructs follows: ; comment 5 memory address specified as a decimal number $5 memory address specified as a hexadecimal number %111 memory address specified as a binary code #5 decimal number #%111 binary number #$5 value at the memory address $5 With the --pemicro switch, the numbers are interpreted differently: 5 memory address specified as a hexadecimal number !5 memory address specified as a decimal number #5 hexadecimal number #!5 decimal number For the list of command line options type `asmc -?`. For the complete list of recognized operational codes see asmc/opcode-map.c.