~ubuntu-branches/debian/sid/stella/sid

« back to all changes in this revision

Viewing changes to src/debugger/TIADebug.cxx

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-02-05 08:09:05 UTC
  • mto: (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20120205080905-fyhwzsu3hrvvujpp
Tags: upstream-3.5.5
ImportĀ upstreamĀ versionĀ 3.5.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
//  SS  SS   tt   ee      ll   ll  aa  aa
9
9
//   SSSS     ttt  eeeee llll llll  aaaaa
10
10
//
11
 
// Copyright (c) 1995-2011 by Bradford W. Mott, Stephen Anthony
 
11
// Copyright (c) 1995-2012 by Bradford W. Mott, Stephen Anthony
12
12
// and the Stella Team
13
13
//
14
14
// See the file "License.txt" for information on usage and redistribution of
15
15
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
16
16
//
17
 
// $Id: TIADebug.cxx 2263 2011-07-13 14:13:49Z stephena $
 
17
// $Id: TIADebug.cxx 2331 2012-01-03 20:26:37Z stephena $
18
18
//============================================================================
19
19
 
20
20
#include "System.hxx"
425
425
  if(newVal > -1)
426
426
    mySystem.poke(COLUP0, newVal);
427
427
 
428
 
  return myTIA.myColor[TIA::_P0] & 0xff;
 
428
  return myTIA.myColor[P0Color] & 0xff;
429
429
}
430
430
 
431
431
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
434
434
  if(newVal > -1)
435
435
    mySystem.poke(COLUP1, newVal);
436
436
 
437
 
  return myTIA.myColor[TIA::_P1] & 0xff;
 
437
  return myTIA.myColor[P1Color] & 0xff;
438
438
}
439
439
 
440
440
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
443
443
  if(newVal > -1)
444
444
    mySystem.poke(COLUPF, newVal);
445
445
 
446
 
  return myTIA.myColor[TIA::_PF] & 0xff;
 
446
  return myTIA.myColor[PFColor] & 0xff;
447
447
}
448
448
 
449
449
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
452
452
  if(newVal > -1)
453
453
    mySystem.poke(COLUBK, newVal);
454
454
 
455
 
  return myTIA.myColor[TIA::_BK] & 0xff;
 
455
  return myTIA.myColor[BKColor] & 0xff;
456
456
}
457
457
 
458
458
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -