Advertisement
Guest User

Untitled

a guest
Oct 11th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.18 KB | None | 0 0
  1. class R2A03 {
  2.     R6502 core;
  3.     DMA dma;
  4.  
  5.     void step() {
  6.         if (core.rdy) {
  7.             core.step();
  8.         }
  9.         else {
  10.             dma.step();
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement