DMASequencer.hh (10706:4206946d60fe) | DMASequencer.hh (10713:eddb533708cb) |
---|---|
1/* 2 * Copyright (c) 2008 Mark D. Hill and David A. Wood 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 52 unchanged lines hidden (view full) --- 61 typedef DMASequencerParams Params; 62 DMASequencer(const Params *); 63 void init(); 64 65 public: 66 class MemSlavePort : public QueuedSlavePort 67 { 68 private: | 1/* 2 * Copyright (c) 2008 Mark D. Hill and David A. Wood 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 52 unchanged lines hidden (view full) --- 61 typedef DMASequencerParams Params; 62 DMASequencer(const Params *); 63 void init(); 64 65 public: 66 class MemSlavePort : public QueuedSlavePort 67 { 68 private: |
69 SlavePacketQueue queue; | 69 RespPacketQueue queue; |
70 RubySystem* ruby_system; 71 bool access_backing_store; 72 73 public: 74 MemSlavePort(const std::string &_name, DMASequencer *_port, 75 PortID id, RubySystem *_ruby_system, 76 bool _access_backing_store); 77 void hitCallback(PacketPtr pkt); --- 74 unchanged lines hidden --- | 70 RubySystem* ruby_system; 71 bool access_backing_store; 72 73 public: 74 MemSlavePort(const std::string &_name, DMASequencer *_port, 75 PortID id, RubySystem *_ruby_system, 76 bool _access_backing_store); 77 void hitCallback(PacketPtr pkt); --- 74 unchanged lines hidden --- |