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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.6/] [tools/] [src/] [librwxxtpp/] [RtclRw11CntlRK11.cpp] - Rev 24

Compare with Previous | Blame | View Log

// $Id: RtclRw11CntlRK11.cpp 509 2013-04-21 20:46:20Z mueller $
//
// Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// This program is free software; you may redistribute and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation, either version 2, or at your option any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for complete details.
// 
// Revision History: 
// Date         Rev Version  Comment
// 2013-03-06   495   1.0    Initial version
// 2013-02-02   480   0.1    First draft
// ---------------------------------------------------------------------------
 
/*!
  \file
  \version $Id: RtclRw11CntlRK11.cpp 509 2013-04-21 20:46:20Z mueller $
  \brief   Implemenation of RtclRw11CntlRK11.
*/
 
#include "librtcltools/RtclNameSet.hpp"
 
#include "RtclRw11CntlRK11.hpp"
#include "RtclRw11UnitRK11.hpp"
 
using namespace std;
 
/*!
  \class Retro::RtclRw11CntlRK11
  \brief FIXME_docs
*/
 
// all method definitions in namespace Retro
namespace Retro {
 
//------------------------------------------+-----------------------------------
//! Constructor
 
RtclRw11CntlRK11::RtclRw11CntlRK11()
  : RtclRw11CntlBase<Rw11CntlRK11>("Rw11CntlRK11")
{}
 
//------------------------------------------+-----------------------------------
//! Destructor
 
RtclRw11CntlRK11::~RtclRw11CntlRK11()
{}
 
//------------------------------------------+-----------------------------------
//! FIXME_docs
 
int RtclRw11CntlRK11::FactoryCmdConfig(RtclArgs& args, RtclRw11Cpu& cpu)
{
  static RtclNameSet optset("-base|-lam");
 
  string cntlname(cpu.Obj().NextCntlName("rk"));
  string cntlcmd = cpu.CommandName() + cntlname;
 
  uint16_t base = Rw11CntlRK11::kIbaddr;
  int      lam  = Rw11CntlRK11::kLam;
 
  string opt;
  while (args.NextOpt(opt, optset)) {
    if        (opt == "-base") {
      if (!args.GetArg("base", base, 0177776, 0160000)) return kERR;
    } else if (opt == "-lam") {
      if (!args.GetArg("lam",  lam,  0, 15)) return kERR;
    }
  }
  if (!args.AllDone()) return kERR;
 
  // configure controller
  Obj().Config(cntlname, base, lam);
 
  // install in CPU
  cpu.Obj().AddCntl(dynamic_pointer_cast<Rw11Cntl>(ObjSPtr()));
  // finally create tcl command
  CreateObjectCmd(args.Interp(), cntlcmd.c_str()); 
 
  // and create unit commands
  for (size_t i=0; i<Obj().NUnit(); i++) {
    string unitcmd = cpu.CommandName() + Obj().UnitName(i);
    new RtclRw11UnitRK11(args.Interp(), unitcmd, Obj().UnitSPtr(i));
  }
 
  return kOK;
}
 
} // end namespace Retro
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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