asi.h 910 Bytes
/* -----------------------------------------------------------------------------
 *  Copyright (C) 2020 daiteq s.r.o.                     http://www.daiteq.com
 *
 *  This program is distributed WITHOUT ANY WARRANTY; without even
 *  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 *  PURPOSE.
 *
 * -----------------------------------------------------------------------------
 *  Filename    : asi.h
 *  Authors     : Martin Danek
 *  Description : address space identifier assignments
 *  Release     :
 *  Version     : 1.0
 *  Date        : 4.1.2020
 * -----------------------------------------------------------------------------
 */
#ifndef ASI_H

#define ASI_H

#define FIFO_DATA_ASR %%asr7
#define FIFO_CTL_ASR  %%asr17

#define CODE_DATA_ASR %%asr1
#define CODE_CTL_ASR  %%asr3

#define SWAR_CTL_ASR  %%asr22
#define SWAR_ACC_ASR  %%asr23

#define SYSREGS_CTL_ASR %%asr2

#endif