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

New method createMIDataWriteMemory()

New method createMIDataWriteRegisterValues().
This commit is contained in:
Alain Magloire 2002-10-20 23:29:24 +00:00
parent b8c0643ed9
commit b73d21d609

View file

@ -68,12 +68,16 @@ public class CommandFactory {
return new MIDataListRegisterNames();
}
public MIDataListRegisterNames createMIDataListRegisterNames(int[] regno) {
return new MIDataListRegisterNames(regno);
public MIDataListRegisterNames createMIDataListRegisterNames(int[] regnos) {
return new MIDataListRegisterNames(regnos);
}
public MIDataListRegisterValues createMIDataListRegisterValues(int fmt, int[] regno) {
return new MIDataListRegisterValues(fmt, regno);
public MIDataListRegisterValues createMIDataListRegisterValues(int fmt, int[] regnos) {
return new MIDataListRegisterValues(fmt, regnos);
}
public MIDataWriteRegisterValues createMIDataWriteRegisterValues(int fmt, int[] regnos, String[] values) {
return new MIDataWriteRegisterValues(fmt, regnos, values);
}
public MIDataReadMemory createMIDataReadMemory(long offset, String address,
@ -83,6 +87,12 @@ public class CommandFactory {
rows, cols, asChar);
}
public MIDataWriteMemory createMIDataWriteMemory(long offset, String address,
int wordFormat, int wordSize,
String value) {
return new MIDataWriteMemory(offset, address, wordFormat, wordSize, value);
}
public MIEnvironmentCD createMIEnvironmentCD(String pathdir) {
return new MIEnvironmentCD(pathdir);
}