Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0592d6b56653593fab46cda65cca8c74b2f67207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2008, 2013 Wind River Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *     IBM Corporation - bug fixing
 *******************************************************************************/
package org.eclipse.debug.examples.core.pda.protocol;


/**
 * Retrieves registers definition information 
 * 
 * <pre>
 *    C: registers {group name}
 *    R: {register name} {true|false}|{bit field name} {start bit} {bit count} {mnemonic 1} {mnemonic 2} ...#{register name} ...
 * </pre>
 */

public class PDARegistersCommand extends PDACommand {

    public PDARegistersCommand(String group) {
        super("registers " + group); //$NON-NLS-1$
    }
    

    public PDACommandResult createResult(String resultText) {
        return new PDARegistersCommandResult(resultText);
    }
}

Back to the top