5 files in the work space folder – Epson S5U1C62000A User Manual

Page 42

Advertising
background image

30

EPSON

S5U1C62000A MANUAL

(S1C60/62 FAMILY ASSEMBLER PACKAGE)

CHAPTER 4: WORK BENCH

4.6.5 Files in the Work Space Folder

The work bench generates the following files in the work space folder:

<file>.epj

Project file

This file contains the project information.

<file>.cm

Linker command file

This file is generated when a build task is started, and is used by the linker to generate an absolute
object file.

Example:

; WorkBench62 Generated
; Friday, May 01, 1998

"C:\E0C62\dev62\Dev621c\Ics621cp.par"

;ICE parameter file

-o "test.abs"

;output file : absolute object

; linked object file(s)
"sub.o"
"main.o"

The contents vary according to the source files included in the project and the linker option setting.

<file>.cmd

Debugger startup command file

This file is generated when a build task is started, and is used by the debugger to execute the com-
mand in this file when it is started up.

Example:

lf "test.abs"

The work bench generates this file so that the executable file according to the format selection is
loaded when the debugger starts up.

<file>.mak

"make" file for build task

This file is generated when a build task is started, and is used for the build process in the work bench.

Example:

# WorkBench62 Generated
# Friday, May 01, 1998

ASM = as62.exe
LINK = lk62.exe
HEX = hx62.exe
ASM_FLG = -g
LINK_FLG = -g
HEX_FLG = -e -b

ALL : test.abs

test.abs : test.cm sub.o main.o

$(LINK) $(LINK_FLG) test.cm

sub.o : C:\E0C62\test\sub.s

$(ASM) $(ASM_FLG) C:\E0C62\test\sub.s

main.o : C:\E0C62\test\main.s

$(ASM) $(ASM_FLG) C:\E0C62\test\main.s

This is a generic make file that contains macro setting and dependency list.

The following files are generated by the development tools during a build process:

<file>.o

Relocatable object files (generated by the assembler)

<file>.abs

Absolute object file (generated by the linker)

<file>h.hex, <file>l.hex

Intel HEX files (generated by the Hex converter when this format is specified
in the work bench)

<file>.hsa, <file>.lsa

Motorola S files (generated by the HEX converter when this format is speci-
fied in the work bench)

Advertising