1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Replaced 'MEMORY_BYTES_PER_ROW_...' constants by 'MEMORY_NUMBER_OF_COLUMNS_...'.

This commit is contained in:
Mikhail Khodjaiants 2002-10-25 17:05:33 +00:00
parent 66f4c56140
commit 6fbe49621c
2 changed files with 8 additions and 6 deletions

View file

@ -1,3 +1,6 @@
2002-10-25 Mikhail Khodjaiants
* IFormattedMemoryBlock.java: Replaced 'MEMORY_BYTES_PER_ROW_...' constants by 'MEMORY_NUMBER_OF_COLUMNS_...'.
2002-10-25 Mikhail Khodjaiants
Remove the 'setWordSize' method from 'IFormattedMemoryBlock' and use 'reformat' instead.
* IFormattedMemoryBlock.java: removed the 'setWordSize' method.

View file

@ -30,12 +30,11 @@ public interface IFormattedMemoryBlock extends IMemoryBlock
public static final int MEMORY_FORMAT_SIGNED_DECIMAL = 3;
public static final int MEMORY_FORMAT_UNSIGNED_DECIMAL = 4;
public static final int MEMORY_BYTES_PER_ROW_4 = 4;
public static final int MEMORY_BYTES_PER_ROW_8 = 8;
public static final int MEMORY_BYTES_PER_ROW_16 = 16;
public static final int MEMORY_BYTES_PER_ROW_32 = 32;
public static final int MEMORY_BYTES_PER_ROW_64 = 64;
public static final int MEMORY_BYTES_PER_ROW_128 = 128;
public static final int MEMORY_NUMBER_OF_COLUMNS_1 = 1;
public static final int MEMORY_NUMBER_OF_COLUMNS_2 = 2;
public static final int MEMORY_NUMBER_OF_COLUMNS_4 = 4;
public static final int MEMORY_NUMBER_OF_COLUMNS_8 = 8;
public static final int MEMORY_NUMBER_OF_COLUMNS_16 = 16;
/**
* Returns the address expression specified to obtain this memory block.