2012-07-20 09:50:41 +02:00
|
|
|
/*
|
|
|
|
* OpenRISC interrupt helper routines
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
|
|
|
|
* Feng Gao <gf91597@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2019-01-23 15:08:54 +01:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-07-20 09:50:41 +02:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:22 +01:00
|
|
|
#include "qemu/osdep.h"
|
2012-07-20 09:50:41 +02:00
|
|
|
#include "cpu.h"
|
2016-03-15 13:18:37 +01:00
|
|
|
#include "exec/exec-all.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
#include "exec/helper-proto.h"
|
2012-07-20 09:50:41 +02:00
|
|
|
|
|
|
|
void HELPER(rfe)(CPUOpenRISCState *env)
|
|
|
|
{
|
2018-05-23 04:51:00 +02:00
|
|
|
env->pc = env->epcr;
|
|
|
|
env->lock_addr = -1;
|
|
|
|
cpu_set_sr(env, env->esr);
|
2012-07-20 09:50:41 +02:00
|
|
|
}
|