URL
https://opencores.org/ocsvn/tinyvliw8/tinyvliw8/trunk
Subversion Repositories tinyvliw8
[/] [tinyvliw8/] [trunk/] [tools/] [asm/] [src/] [config.h] - Rev 9
Go to most recent revision | Compare with Previous | Blame | View Log
/** * \file config.h * \author Oliver Stecklina <stecklina@ihp-microelectronics.com> * \date 12.12.2015 * * \brief Global configuration file * * <p> * Copyright (C) 2015 IHP GmbH, Frankfurt (Oder), Germany * * This code is free software. It is licensed under the EUPL, Version 1.1 * or - as soon they will be approved by the European Commission - subsequent * versions of the EUPL (the "License"). * You may redistribute this code and/or modify it under the terms of this * License. * You may not use this work except in compliance with the License. * You may obtain a copy of the License at: * * http://joinup.ec.europa.eu/software/page/eupl/licence-eupl * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * </p> */ #ifndef CONFIG_H #define CONFIG_H #define CONFIG_CODE_SIZE 0x0800 #define CONFIG_DATA_ADDR_MAX 0xff #define CONFIG_CODE_ADDR_MAX (CONFIG_CODE_SIZE - 1) #define CONFIG_IRQ_NUM 4 #define CONFIG_IRQ_START (CONFIG_CODE_SIZE - CONFIG_IRQ_NUM) #define CONFIG_MAX_REG_NUM 7 #endif
Go to most recent revision | Compare with Previous | Blame | View Log