From ddf3ea2bc3e4c60c4daa215a0f275a098ea9e59d Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 26 Mar 2018 12:23:22 +0200 Subject: bsps/csb360: Move libcpu content to bsps This patch is a part of the BSP source reorganization. Update #3285. --- c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S | 46 -------------------------- 1 file changed, 46 deletions(-) delete mode 100644 c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S (limited to 'c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S') diff --git a/c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S b/c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S deleted file mode 100644 index b9c28921c4..0000000000 --- a/c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S +++ /dev/null @@ -1,46 +0,0 @@ -/** - * @file - * @brief Handle MCF5272 TIMER2 interrupts. - * - * All code in this routine is pure overhead which can perturb the - * accuracy of RTEMS' timing test suite. - * - * See also: benchmark_timer_read() - * - * To reduce overhead this is best to be the "rawest" hardware interupt - * handler you can write. This should be the only interrupt which can - * occur during the measured time period. - * - * An external counter, Timer_interrupts, is incremented. - */ - -/* - * Copyright (C) 2000 OKTET Ltd., St.-Petersburg, Russia - * Author: Victor V. Vengerov - * - * This file based on work: - * Author: - * David Fiddes, D.J@fiddes.surfaid.org - * http://www.calm.hw.ac.uk/davidf/coldfire/ - * - * COPYRIGHT (c) 1989-1998. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. - */ - -#include -#include - -BEGIN_CODE - PUBLIC(timerisr) -SYM(timerisr): - move.l a0, a7@- - move.b # (MCF5272_TER_REF + MCF5272_TER_CAP), (a0) - addq.l #1,SYM(Timer_interrupts) | increment timer value - move.l a7@+, a0 - rte -END_CODE -END -- cgit v1.2.3