OpenCores
URL https://opencores.org/ocsvn/openmsp430/openmsp430/trunk

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [c-jump_jl.v] - Blame information for rev 2

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 olivier.gi
/*===========================================================================*/
2
/* Copyright (C) 2001 Authors                                                */
3
/*                                                                           */
4
/* This source file may be used and distributed without restriction provided */
5
/* that this copyright statement is not removed from the file and that any   */
6
/* derivative work contains the original copyright notice and the associated */
7
/* disclaimer.                                                               */
8
/*                                                                           */
9
/* This source file is free software; you can redistribute it and/or modify  */
10
/* it under the terms of the GNU Lesser General Public License as published  */
11
/* by the Free Software Foundation; either version 2.1 of the License, or    */
12
/* (at your option) any later version.                                       */
13
/*                                                                           */
14
/* This source is distributed in the hope that it will be useful, but WITHOUT*/
15
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     */
16
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public       */
17
/* License for more details.                                                 */
18
/*                                                                           */
19
/* You should have received a copy of the GNU Lesser General Public License  */
20
/* along with this source; if not, write to the Free Software Foundation,    */
21
/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA        */
22
/*                                                                           */
23
/*===========================================================================*/
24
/*                 CONDITIONAL JUMP: JL INSTRUCTION                          */
25
/*---------------------------------------------------------------------------*/
26
/* Test the JL instruction.                                                  */
27
/*===========================================================================*/
28
 
29
initial
30
   begin
31
      $display(" ===============================================");
32
      $display("|                 START SIMULATION              |");
33
      $display(" ===============================================");
34
      repeat(5) @(posedge mclk);
35
      stimulus_done = 0;
36
 
37
 
38
      // TEST JUMP FORWARD AND BACKWARD
39
      @(r15==16'h1000);
40
      if (r4    !==16'h1234) tb_error("====== JL (jump forward 1) =====");
41
      if (r5    !==16'h5678) tb_error("====== JL (jump backward) =====");
42
      if (r6    !==16'h9abc) tb_error("====== JL (jump forward 2) =====");
43
 
44
      // TEST JUMP FOR ALL FLAG CONFIGURATIONS
45
      @(r15==16'h2000);
46
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b0000) ==");
47
      @(r15==16'h2001);
48
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b0001) ==");
49
      @(r15==16'h2002);
50
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b0010) ==");
51
      @(r15==16'h2003);
52
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b0011) ==");
53
      @(r15==16'h2004);
54
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b0100) ==");
55
      @(r15==16'h2005);
56
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b0101) ==");
57
      @(r15==16'h2006);
58
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b0110) ==");
59
      @(r15==16'h2007);
60
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b0111) ==");
61
      @(r15==16'h2008);
62
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b1000) ==");
63
      @(r15==16'h2009);
64
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b1001) ==");
65
      @(r15==16'h200A);
66
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b1010) ==");
67
      @(r15==16'h200B);
68
      if (r4    !==16'h1234) tb_error("====== JL ({V,N,Z,C}=4'b1011) ==");
69
      @(r15==16'h200C);
70
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b1100) ==");
71
      @(r15==16'h200D);
72
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b1101) ==");
73
      @(r15==16'h200E);
74
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b1110) ==");
75
      @(r15==16'h200F);
76
      if (r4    !==16'h0000) tb_error("====== JL ({V,N,Z,C}=4'b1111) ==");
77
 
78
 
79
      stimulus_done = 1;
80
   end
81
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.