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

« back to all changes in this revision

Viewing changes to src/powerrom_cpu/powerrom_cpu.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:
31
31
#include "main.h"
32
32
#include "emul_op.h"
33
33
#include "prefs.h"
 
34
#include "timer.h"
34
35
#include "user_strings.h"
35
36
 
36
37
#include "sheep_driver.h"
1238
1239
 
1239
1240
void TriggerInterrupt(void)
1240
1241
{
 
1242
        idle_resume();
1241
1243
        if (emul_thread > 0 && ReadyForSignals)
1242
1244
                send_signal(emul_thread, SIGUSR1);
1243
1245
}