~ubuntu-branches/ubuntu/feisty/basilisk2/feisty

« back to all changes in this revision

Viewing changes to src/uae_cpu/basilisk_glue.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2006-06-01 01:11:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060601011116-xjhegbgyfsxag5fl
Tags: 0.9.20060529-1
* New upstream CVS snapshot.
* Update local cdbs snippet copyright-check.mk:
  + Broaden scan to also look for "(c)" by default.
  + Make egrep options configurable.
  + Ignore auto-tools files.
* Bump up standards-version to 3.7.2 (no changes needed).
* Let dh_strip do the stripping (not the make install target).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "prefs.h"
26
26
#include "emul_op.h"
27
27
#include "rom_patches.h"
 
28
#include "timer.h"
28
29
#include "m68k.h"
29
30
#include "memory.h"
30
31
#include "readcpu.h"
152
153
 
153
154
void TriggerInterrupt(void)
154
155
{
 
156
        idle_resume();
155
157
        SPCFLAGS_SET( SPCFLAG_INT );
156
158
}
157
159