~ubuntu-branches/ubuntu/dapper/simulavr/dapper

« back to all changes in this revision

Viewing changes to regress/test_opcodes/test_NOP.py

  • Committer: Bazaar Package Importer
  • Author(s): Shaun Jackman
  • Date: 2004-04-10 13:54:17 UTC
  • Revision ID: james.westby@ubuntu.com-20040410135417-zywapjyz252y65se
Tags: upstream-0.1.2.1
ImportĀ upstreamĀ versionĀ 0.1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
###############################################################################
 
3
#
 
4
# simulavr - A simulator for the Atmel AVR family of microcontrollers.
 
5
# Copyright (C) 2001, 2002  Theodore A. Roth
 
6
#
 
7
# This program is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2 of the License, or
 
10
# (at your option) any later version.
 
11
#
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program; if not, write to the Free Software
 
19
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
20
#
 
21
###############################################################################
 
22
#
 
23
# $Id: test_NOP.py,v 1.2 2002/02/20 21:28:31 troth Exp $
 
24
#
 
25
 
 
26
"""Test the NOP opcode.
 
27
"""
 
28
 
 
29
import base_test
 
30
from registers import Reg
 
31
 
 
32
class NOP_TestFail(base_test.TestFail): pass
 
33
 
 
34
class test_NOP(base_test.opcode_test):
 
35
        """Test the NOP opcode.
 
36
 
 
37
        A NOP should only change the PC (PC <- PC + 1). If any other registers
 
38
        change, test fails.
 
39
 
 
40
        PC should be incremented by two bytes (1 word). Data sheet uses 1 word and
 
41
        gdb interface uses 2 bytes.
 
42
        """
 
43
 
 
44
        def setup(self):
 
45
                return 0x0000
 
46
 
 
47
        def analyze_results(self):
 
48
                # the base class checks PC and that no registers were changed.
 
49
                pass