ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/adb.cpp
Revision 1.17 - (view) (annotate) - [select for diffs]
2010-02-21T09:55:36Z (14 years, 2 months ago) by cebix
Branch: MAIN
CVS Tags: HEAD
Changes since 1.16: +2 -2 lines
Diff to previous 1.16
fixed compiler warnings

Revision 1.16 - (view) (annotate) - [select for diffs]
2008-01-01T09:40:31Z (16 years, 3 months ago) by gbeauche
Branch: MAIN
Changes since 1.15: +1 -1 lines
Diff to previous 1.15
Happy New Year!

Revision 1.15 - (view) (annotate) - [select for diffs]
2005-01-30T21:42:13Z (19 years, 3 months ago) by gbeauche
Branch: MAIN
CVS Tags: nigel-build-17, nigel-build-19
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
Happy New Year!

Revision 1.14 - (view) (annotate) - [select for diffs]
2004-11-22T22:42:55Z (19 years, 5 months ago) by gbeauche
Branch: MAIN
Changes since 1.13: +13 -8 lines
Diff to previous 1.13
Generate CursorDeviceDispatch() call onto the SheepShaver Procedures region

Revision 1.13 - (view) (annotate) - [select for diffs]
2004-11-13T14:28:49Z (19 years, 5 months ago) by gbeauche
Branch: MAIN
Changes since 1.12: +1 -1 lines
Diff to previous 1.12
Implement Direct Addressing mode for SheepShaver.

Revision 1.12 - (view) (annotate) - [select for diffs]
2004-01-12T15:29:21Z (20 years, 3 months ago) by cebix
Branch: MAIN
CVS Tags: nigel-build-15, nigel-build-16
Changes since 1.11: +1 -1 lines
Diff to previous 1.11
Happy New Year! :)

Revision 1.11 - (view) (annotate) - [select for diffs]
2004-01-10T08:54:14Z (20 years, 3 months ago) by gbeauche
Branch: MAIN
Changes since 1.10: +7 -7 lines
Diff to previous 1.10
Make sure 68k procedures are stored on 16-bit word boundaries.

Revision 1.10 - (view) (annotate) - [select for diffs]
2003-08-16T03:28:56Z (20 years, 8 months ago) by nigel
Branch: MAIN
Changes since 1.9: +7 -2 lines
Diff to previous 1.9
Added new keyboardtype preference (stolen from the Windows port)

Revision 1.9 - (view) (annotate) - [select for diffs]
2003-05-13T12:34:09Z (20 years, 11 months ago) by gbeauche
Branch: MAIN
Changes since 1.8: +7 -7 lines
Diff to previous 1.8
Little-endian fixes for SheepShaver

Revision 1.8 - (view) (annotate) - [select for diffs]
2002-01-15T14:58:32Z (22 years, 3 months ago) by cebix
Branch: MAIN
CVS Tags: nigel-build-12, nigel-build-13, snapshot-15012002
Changes since 1.7: +1 -1 lines
Diff to previous 1.7
- documentation updates
- 2001 -> 2002
- version 0.9 -> 1.0

Revision 1.7 - (view) (annotate) - [select for diffs]
2001-07-09T11:21:59Z (22 years, 9 months ago) by cebix
Branch: MAIN
Changes since 1.6: +20 -7 lines
Diff to previous 1.6
- ADB has its own interrupt flag, INTFLAG_ADB
- ADBMouseMoved(), ADBMouseDown/Up() and ADBKeyDown/Up() trigger the ADB
  interrupt
- ADB mutex is only used for mouse movement (the only input state where it
  matters)
- adb.cpp: toggling relative mouse mode resets mouse_x/y
- PrimeTime(0) schedules a timer task with 0 delay time; this is still not
  the correct implementation, but it makes MacSyndicate work...
- Unix: pthreads are preferred to POSIX.4 timers for 60Hz ticks because the
  timers drift badly under Linux and the thread can compensate for drifting
  well enough
- Unix: moved GetTicks_usec() and Delay_usec() to timer_unix.cpp
- video_x.cpp: X mouse acceleration is disabled in relative mouse mode because
  MacOS does its own acceleration
- video_x.cpp: palette[].pixel and palette[].flags are always preset
- video_x.cpp: decoupled X event handling from 60Hz video refresh cycle by
  using select() with a timeout on the X fd

Revision 1.6 - (view) (annotate) - [select for diffs]
2001-07-03T15:59:45Z (22 years, 9 months ago) by cebix
Branch: MAIN
Changes since 1.5: +56 -20 lines
Diff to previous 1.5
- added support for platform-independant mutexes, currently only properly
  implemented under Unix
- adb.cpp uses mutexes for thread-safe mouse handling
- video_x.cpp: pressing Ctrl-F5 in windowed mode switches to a "grabbed"
  relative mouse mode, useful for some games
- video_x.cpp: fixed some bugs relating to the hotkeys (key releases are no
  longer treated as hotkeys)

Revision 1.5 - (view) (annotate) - [select for diffs]
2001-02-02T20:52:56Z (23 years, 2 months ago) by cebix
Branch: MAIN
CVS Tags: release-0_9-1, snapshot-17022001, snapshot-29052001
Changes since 1.4: +1 -1 lines
Diff to previous 1.4
- bumped version number to 0.9
- updated copyright dates

Revision 1.4 - (view) (annotate) - [select for diffs]
2000-07-25T11:13:24Z (23 years, 9 months ago) by cebix
Branch: MAIN
Changes since 1.3: +20 -3 lines
Diff to previous 1.3
- minor cleanups

Revision 1.3 - (view) (annotate) - [select for diffs]
2000-04-10T18:52:17Z (24 years ago) by cebix
Branch: MAIN
CVS Tags: snapshot-13072000
Changes since 1.2: +1 -1 lines
Diff to previous 1.2
- updated copyright info: 1999->2000

Revision 1.2 - (view) (annotate) - [select for diffs]
1999-11-03T10:56:10Z (24 years, 5 months ago) by cebix
Branch: MAIN
CVS Tags: release-0_8-1, snapshot-22121999
Changes since 1.1: +17 -20 lines
Diff to previous 1.1
- imported UAE CPU 0.8.10 changes
- new utility functions Mac_memset, Mac2Host_memcpy, Host2Mac_memcpu and
  Mac2Mac_memcpy
- extfs.cpp: fixed bug in fs_rename() and fs_cat_move() (auxiliary IOParam
  block was not in Mac address space)
- some provisions for using UAE CPU compiler (doesn't work yet)

Revision 1.1.1.1 - (view) (annotate) - [select for diffs] (vendor branch)
1999-10-03T14:16:25Z (24 years, 7 months ago) by cebix
Branch: cebix
CVS Tags: release-0_7-2, snapshot-02111999, snapshot-21101999, start
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 , to next main 1.17
Imported sources

Revision 1.1 - (view) (annotate) - [select for diffs]
1999-10-03T14:16:25Z (24 years, 7 months ago) by cebix
Branch: MAIN
Branch point for: cebix
Initial revision

Convenience Links

Links to HEAD: (view) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a