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

Subversion Repositories potato

[/] [potato/] [trunk/] [riscv-tests/] [andi.S] - Blame information for rev 47

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

Line No. Rev Author Line
1 6 skordal
# See LICENSE for license details.
2
 
3
#*****************************************************************************
4
# andi.S
5
#-----------------------------------------------------------------------------
6
#
7
# Test andi instruction.
8
#
9
 
10
#include "riscv_test.h"
11
#include "test_macros.h"
12
 
13
RVTEST_RV32U
14
RVTEST_CODE_BEGIN
15
 
16
  #-------------------------------------------------------------
17
  # Logical tests
18
  #-------------------------------------------------------------
19
 
20
  TEST_IMM_OP( 2, andi, 0xff00ff00, 0xff00ff00, 0xf0f );
21
  TEST_IMM_OP( 3, andi, 0x000000f0, 0x0ff00ff0, 0x0f0 );
22
  TEST_IMM_OP( 4, andi, 0x0000000f, 0x00ff00ff, 0x70f );
23
  TEST_IMM_OP( 5, andi, 0x00000000, 0xf00ff00f, 0x0f0 );
24
 
25
  #-------------------------------------------------------------
26
  # Source/Destination tests
27
  #-------------------------------------------------------------
28
 
29
  TEST_IMM_SRC1_EQ_DEST( 6, andi, 0x00000000, 0xff00ff00, 0x0f0 );
30
 
31
  #-------------------------------------------------------------
32
  # Bypassing tests
33
  #-------------------------------------------------------------
34
 
35
  TEST_IMM_DEST_BYPASS( 7,  0, andi, 0x00000700, 0x0ff00ff0, 0x70f );
36
  TEST_IMM_DEST_BYPASS( 8,  1, andi, 0x000000f0, 0x00ff00ff, 0x0f0 );
37
  TEST_IMM_DEST_BYPASS( 9,  2, andi, 0xf00ff00f, 0xf00ff00f, 0xf0f );
38
 
39
  TEST_IMM_SRC1_BYPASS( 10, 0, andi, 0x00000700, 0x0ff00ff0, 0x70f );
40
  TEST_IMM_SRC1_BYPASS( 11, 1, andi, 0x000000f0, 0x00ff00ff, 0x0f0 );
41
  TEST_IMM_SRC1_BYPASS( 12, 2, andi, 0x0000000f, 0xf00ff00f, 0x70f );
42
 
43
  TEST_IMM_ZEROSRC1( 13, andi, 0, 0x0f0 );
44
  TEST_IMM_ZERODEST( 14, andi, 0x00ff00ff, 0x70f );
45
 
46
  TEST_PASSFAIL
47
 
48
RVTEST_CODE_END
49
 
50
  .data
51
RVTEST_DATA_BEGIN
52
 
53
  TEST_DATA
54
 
55
RVTEST_DATA_END

powered by: WebSVN 2.1.0

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