Subversion Repositories DevTools

Rev

Rev 227 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
3
# Copyright (c) ERG Transit Systems. 1996-2004
4
# 
5
# File:         PLATFORM/INGEN
6
#
7
# Contents:     ingen target
8
#
9
# Revision History:
10
#           DDP     04-Jan-05       Created
11
###############################################################################
12
#
13
 
14
H8SInit();
15
 
16
sub 
17
H8SInit
18
{
19
 
20
    Toolset( '*', "keilc51v41" );
21
    PlatformDefines( "ingen.def" );
22
 
23
    PlatformDefine( "#################################################");
24
    PlatformDefine( "# Building an application using the Keil C51 V41" );
25
    PlatformDefine( "#" );
26
}
27
 
28
1;
29
 
30
 
31