एमओएस 6502 सीपीयू का अनुकरण करें


29

यह इंटेल 8086 चुनौती से प्रेरित है जो यहां पर भी है, लेकिन मुझे लगा कि 6502 चुनौती भी दिलचस्प होगी।

चुनौती

मैंने सोचा कि यह एक मजेदार होगा जिसके लिए परिणाम देखें। यह स्पष्ट रूप से स्पेक्ट्रम के अधिक उन्नत पक्ष की ओर है। चुनौती यह है कि आप अपना 6502 CPU एमुलेटर लिखें। इसमें, निश्चित रूप से, इसके निर्देश सेट और इसके एन्कोडिंग प्रारूप को समझना शामिल है। इसके नीचे संसाधन जुड़े हुए हैं। 6502 अनुकरण करने के लिए सबसे आसान वास्तविक दुनिया प्रोसेसर में से एक है। इस चुनौती के प्रयोजनों के लिए, यदि आप नहीं चाहते हैं, तो आपको साइकिल समय के बारे में चिंता करने की आवश्यकता नहीं होगी - लेकिन यह हमेशा शामिल करने के लिए एक प्लस है!

किसी भी तरह का कोड नहीं है! बेशक, आप निश्चित रूप से समझने के लिए अन्य एमुलेटर पर झांक सकते हैं, लेकिन कोई प्रतिलिपि और चिपकाने नहीं! :)

एक बार जब आपका कोड काम करता है, तो आप हमेशा अतिरिक्त मील जा सकते हैं यदि आप इसे पसंद करते हैं और इसे एक Apple II एमुलेटर, या NES, C64, VIC-20 या पुराने 6502-आधारित प्रणालियों में से किसी भी दिन में वापस से चालू कर सकते हैं।

अपने एमुलेटर का परीक्षण

मैंने एक 6502 परीक्षण सूट संकलित किया है जो मुझे यहाँ स्रोत कोड मिला है: http://code.google.com/p/hmc-6502/source/browse/trunk/emu/testvectors/AllSuiteA.asm

मेरा संकलित संस्करण यहाँ डाउनलोड किया जा सकता है: http://rubbermallet.org/AllSuiteA.zip

$ 48 पर अपने एमुलेटर की मेमोरी स्पेस में 48 केबी बाइनरी लोड करें, जो इसके नीचे 16 केबी-रीड-राइट रैम छोड़ता है। जब परीक्षण ने निष्पादन समाप्त कर दिया है, तो आपके सीपीयू के पारित होने पर पता $ 0210 का मूल्य $ एफएफ होना चाहिए। आपको पता चल जाएगा कि परीक्षण समाप्त हो गया है जब प्रोग्राम काउंटर (पीसी) पता $ 45C0 तक पहुंच गया है।

अन्य परीक्षण यहाँ भी उपलब्ध हैं: http://visual6502.org/wiki/index.php?title=6502TestPrograms

इसके साथ कुछ और इंटरेक्टिव करना

एक बार जब आपका सीपीयू काम करता है, तो आप शायद टेस्ट आउटपुट को देखने की तुलना में कुछ अधिक मजेदार करना चाहेंगे! मैंने 6502 के लिए एन्हांस्ड BASIC की ROM छवि संकलित की। यह 16 KB है, इसलिए आपको इसे अपने इम्यूलेटेड मेमोरी स्पेस के $ C000 में लोड करना चाहिए, अपने वर्चुअल 6502 को रीसेट करना चाहिए और निष्पादन शुरू करना चाहिए।

इस ज़िप को डाउनलोड करें, जिसमें ehbasic.bin शामिल है: http://rubbermallet.org/ehbasic.zip

जिस तरह से EhBASIC इनपुट / आउटपुट को हैंडल करता है वह बहुत सरल है। जब यह कंसोल के लिए एक चरित्र लिखना चाहता है, तो यह मेमोरी स्थान $ F001 को बाइट लिखता है। इसलिए, जब आपका एमुलेटर 6502 को उस स्थान पर लिखने की कोशिश करता है, तो उस वर्ण मान को एक प्रिंटफ ("% c", मान) के साथ कंसोल पर प्रिंट करें ; या फिर आप चाहते हैं। (यह चुनौती सी कोर्स तक सीमित नहीं है)

जब यह कंसोल से इनपुट किए जा रहे किसी वर्ण के लिए मतदान करता है, तो यह बहुत समान है। यह मेमोरी लोकेशन $ F004 से पढ़ता रहता है, जहाँ आपको कीबोर्ड पर अगले ASCII वर्ण मान को पढ़ने की प्रतीक्षा करनी चाहिए। यदि पढ़ने के लिए अधिक इनपुट नहीं है, तो उसे शून्य का मान लौटाना चाहिए।

गैर-शून्य होने तक एहबासिक उस स्थान पर मूल्य का सर्वेक्षण करता है, जिससे यह पता चलता है कि बाइट वैध कीबोर्ड इनपुट है। यही कारण है कि अगर पढ़ने के लिए अधिक इनपुट नहीं है, तो एमुलेटर को वहां शून्य पर लौटना चाहिए। EBBASIC इनपुट की तलाश में अगली वैध कुंजी तक उस पर स्पिन करेगा।

यदि आप अंतिम कुंजी मान को पढ़ने के बाद उस मूल्य को शून्य पर स्पष्ट नहीं करते हैं, तो यह दोहराए जाने का कारण होगा जैसे कि आप कुंजी को पकड़ रहे थे, इसलिए इसे सही ढंग से करने के लिए सावधान रहें!

यदि आपका एमुलेटर सही तरीके से काम करता है, तो यह वह है जो आपको ROM इमेज को निष्पादित करते समय आपके कंसोल पर प्रिंट आउट दिखाई देगा:

6502 EhBASIC [C]old/[W]arm ?

प्रेस सी, फिर एंटर दबाएं और आपको देखना चाहिए:

Memory size ?

31999 Bytes free

Enhanced BASIC 2.22

Ready

बाइट्स फ्री आपके लिए अलग हो सकता है, लेकिन मेरे एमुलेटर में मैंने लिखने योग्य मेमोरी एरिया को 32 KB की कैप तक सीमित कर दिया है। आप वास्तव में सभी तरह से ऊपर जा सकते हैं जहां ROM शुरू होता है, जो कि 48 KB का निशान है।

6502 सीपीयू संसाधन लिंक

यहां कुछ संसाधन दिए गए हैं जिनसे आपको काम करने के लिए पर्याप्त जानकारी मिलनी चाहिए:

http://www.obelisk.demon.co.uk/6502/instructions.html

http://www.e-tradition.net/bytes/6502/6502_instruction_set.html

http://www.llx.com/~nparker/a2/opcodes.html <- यह कुछ बहुत ही रोचक जानकारी है

http://en.wikipedia.org/wiki/MOS_Technology_6502

यदि आपके पास प्रश्न हैं या अधिक तकनीकी जानकारी की आवश्यकता है, तो मुझसे पूछने में संकोच न करें। वेब पर अन्य 6502 जानकारी का भी एक बड़ा धन है। Google आपका मित्र है!


इस वाक्य में असमानता प्रतीत होती है: "यदि पढ़ने के लिए अधिक इनपुट नहीं है , तो इसे शून्य का मान लौटा देना चाहिए। इससे EhBASIC को तब तक मतदान जारी रखने का कारण बनता है जब तक कि यह नॉन- मेज़रो न हो ।"
इग्बी लार्गेमैन

एर, मेरी गलती है। मैंने इसे अच्छी तरह से नहीं समझाया। मेरा आशय यह है कि एहबासिक उस स्थान पर उस मूल्य का सर्वेक्षण करता है जब तक कि वह शून्य न हो, जिससे यह पता चलता है कि बाइट वैध कीबोर्ड इनपुट है। यही कारण है कि अगर पढ़ने के लिए अधिक इनपुट नहीं है, तो एमुलेटर को वहां शून्य पर लौटना चाहिए। मैं उसे संपादित करूँगा।
माइक सी।

मैं अंततः अपना खुद का 6502 कोर पोस्ट कर सकता हूं, लेकिन मैं पहले दूसरों से कुछ प्रविष्टियों का इंतजार करने जा रहा हूं। उम्मीद है कि कोई इस चुनौती को एक शॉट देता है। 8086 की चुनौती के लिए काफी कुछ समाधान थे, इसलिए स्पष्ट रूप से ऐसा करने के लिए यहां काफी स्मार्ट लोग हैं। 8086 ज्यादा मुश्किल है!
माइक सी।

1
मैं यह कोशिश करना पसंद करूंगा, हालांकि किसी भी प्रतिस्पर्धी अर्थ में नहीं। मेरे लिए समस्या समय ढूंढ रही है। मुझे लगता है कि यह अच्छा होगा यदि आप एक और परीक्षण कार्यक्रम प्रदान कर सकते हैं जो एमुलेटर का पूरी तरह से अभ्यास करेगा और कुछ आसानी से सत्यापन योग्य उत्पादन करेगा, जो कि 8086 चुनौती के लिए किया गया था।
Igby Largeman

2
आप कैसे निर्धारित करते हैं कि कौन जीतता है? (वहाँ एक विजेता होना होगा)

जवाबों:


22

सोचा था कि मैं आगे बढ़ूंगा और अपना खुद का कार्यान्वयन करूंगा। यह पूरी तरह से असंयमित है, लेकिन यह एक पूर्ण कार्यान्वयन है।

  • सी। की 668 लाइनें (केवल टिप्पणियों के साथ खाली लाइनों या लाइनों की गिनती नहीं)
  • समर्थन करता है (मुझे लगता है) सभी अवांछित निर्देश।
  • BCD का समर्थन करता है।
  • सीपीयू घड़ी चक्र समय। (कुछ पृष्ठ-सीमा आवरण पर समायोजन सहित)
  • एकल-चरण द्वारा या टिक्स की संख्या निर्दिष्ट करके निर्देशों को निष्पादित कर सकते हैं।
  • हर निर्देश के समाप्त होने के बाद एक बाहरी फ़ंक्शन को हुक करने का समर्थन करता है। ऐसा इसलिए था क्योंकि यह मूल रूप से एक एनईएस एमुलेटर के लिए था और मैंने इसका उपयोग ऑडियो टाइमिंग के लिए किया था।
/ * नकली 6502 सीपीयू एमुलेटर कोर v1.1 *******************
 * (c) 2011-2013 माइक चेम्बर्स *
 ************************************************** *** /

# अलग करें <stdio.h>
# अलग करें <stdint.h>

// बाहरी रूप से आपूर्ति किए गए कार्य
extern uint8_t read6502 (uint16_t पता);
बाहरी शून्य राइट 6502 (uint16_t पता, uint8_t मूल्य);

// 6502 परिभाषित करता है
#define UNDOCUMENTED // जब इसे परिभाषित किया जाता है, तो अनिर्धारित ऑपकोड को संभाला जाता है।
                     // अन्यथा, वे बस NOPs के रूप में व्यवहार किया जाता है।

// # परिभाषित NES_CPU // जब यह परिभाषित किया जाता है, तो बाइनरी-कोडेड दशमलव (BCD)
                     // स्थिति ध्वज एडीसी और एसबीसी द्वारा सम्मानित नहीं किया गया है। 2A03
                     // निन्टेंडो एंटरटेनमेंट सिस्टम में सीपीयू नहीं है
                     // समर्थन बीसीडी ऑपरेशन।

#define FLAG_CARRY 0x01
#define FLAG_ZERO 0x02
#define FLAG_INTERRUPT 0x04
#define FLAG_DECIMAL 0x08
#define FLAG_BREAK 0x10
#define FLAG_CONSTANT 0x20
#define FLAG_OVERFLOW 0x40
#define FLAG_SIGN 0x80

#define BASE_STACK 0x100

# डेफिन सैविएक्कुम (n) a = (uint8_t) ((n) & 0x00FFF)


// ध्वज संशोधक मैक्रोज़
#define setcarry () स्थिति | = FLAG_CARRY
#define क्लर्करी () स्थिति और = (~ FLAG_CARRY)
#define setzero () स्थिति | = FLAG_ZERO
# डाइन क्लीज़रो () स्थिति और = (~ FLAG_ZERO)
#define setinterrupt () स्थिति | = FLAG_INTERRUPT
#define clearinterrupt () स्थिति और = (~ FLAG_INTERRUPT)
#define setdecimal () स्थिति | = FLAG_DECIMAL
#define क्लियरडेसिमल () स्थिति और = (~ FLAG_DECIMAL)
#define setoverflow () स्थिति | = FLAG_OVERFLOW
#define clearoverflow () स्थिति और = (~ FLAG_OVERFLOW)
#define setign () स्थिति | = FLAG_SIGN
#define clearsign () स्थिति और = (~ FLAG_SIGN)


// ध्वज गणना मैक्रोज़
#define zerocalc (n) {\ _
    if (n) और 0x00FF) क्लीज़रो () ;;
        अन्य सेज़रो () ;;
}

#define signcalc (n) {\ _
    if (n) & 0x0080) setign () ;;
        और स्पष्ट () ;;
}

# डेफ़िन कैरीकेल्क (n) {\ _
    if (n) & 0xFF00) setcarry () ;;
        और स्पष्टता () ;;
}

# ओवरफ्लो ओवरक्लॉक (एन, एम, ओ) {/ * एन = परिणाम, एम = संचायक, ओ = एल * * / \
    if ((n) ^ (uint16_t) (m)) & ((n) ^ (o)) & 0x0080) setoverflow () ;;
        और क्लीवरफ़्लो () ;;
}


// 6502 सीपीयू रजिस्टर
uint16_t पीसी;
uint8_t sp, a, x, y, status = FLAG_CONSTANT;


// सहायक चर
uint64_t निर्देश = 0; // निष्पादित कुल निर्देशों का ट्रैक रखें
uint32_t clockticks6502 = 0, clockgoal6502 = 0;
uint16_t oldpc, ea, reladdr, value, result;
uint8_t opcode, oldstatus;

// कुछ अन्य सामान्य कार्यों द्वारा उपयोग किए जाने वाले कुछ सामान्य कार्य
शून्य पुश 16 (uint16_t पुशवल) {
    राइट 6502 (BASE_STACK + सपा, (पुशवल >> 8) और 0xFF);
    राइट 6502 (BASE_STACK + ((sp - 1) और 0xFF), पुशवल और 0xFF);
    एसपी - = 2;
}

शून्य पुश 8 (uint8_t पुशवल) {
    राइट 6502 (BASE_STACK + sp--, पुशवल);
}

uint16_t पुल 16 () {
    uint16_t temp16;
    temp16 = read6502 (BASE_STACK + ((sp + 1) & 0xFF)) | ((uint16_t) रीड 6502 (BASE_STACK + ((sp + 2) & 0xFF) << <<);
    sp + = 2;
    वापसी (temp16);
}

uint8_t pull8 () {
    वापसी (रीड 6502 (BASE_STACK + ++ sp));
}

शून्य रीसेट 6502 () {
    pc = (uint16_t) रीड 6502 (0xFFFC) | ((uint16_t) रीड 6502 (0xFFFD) << 8);
    a = 0;
    x = 0;
    y = 0;
    sp = 0xFD;
    स्थिति | = FLAG_CONSTANT;
}


स्थिर शून्य (* addrtable [256]) ();
स्थिर शून्य (* वैकल्पिक [256]) ();
uint8_t पेनाल्टी, पेनाल्टीड्र;

// संबोधित मोड मोड, प्रभावी पते की गणना करता है
स्थिर शून्य छोटा सा भूत () {// निहित
}

स्थिर शून्य एसीसी () {// संचायक
}

स्थिर शून्य imm () {// तत्काल
    ea = पीसी ++;
}

स्थिर शून्य zp () {// शून्य-पृष्ठ
    ea = (uint16_t) read6502 ((uint16_t) पीसी ++);
}

स्थिर शून्य zpx () {// शून्य-पृष्ठ, एक्स
    ea = ((uint16_t) read6502 ((uint16_t) पीसी ++) + (uint16_t) x) & 0xFF; // शून्य-पृष्ठ आवरण
}

स्थिर शून्य zpy () {// शून्य-पृष्ठ, वाई
    ea = ((uint16_t) read6502 ((uint16_t) PC ++) + (uint16_t) y) & 0xFF; // शून्य-पृष्ठ आवरण
}

स्थिर शून्य संबंध () {// शाखा ऑप्स के लिए सापेक्ष (8-बिट तत्काल मूल्य, हस्ताक्षर-विस्तारित)
    reladdr = (uint16_t) रीड 6502 (पीसी ++);
    if (reladdr & 0x80) reladdr | = 0xFF00;
}

स्थैतिक शून्य abso () {// निरपेक्ष
    ea = (uint16_t) रीड 6502 (पीसी) | ((uint16_t) पठन 6502 (पीसी + 1) << 8);
    पीसी + = 2;
}

स्थैतिक शून्य absx () {// निरपेक्ष, एक्स
    uint16_t प्रारंभ पृष्ठ;
    ea = ((uint16_t) रीड 6502 (पीसी) | ((uint16_t) रीड 6502 (पीसी + 1) << 8));
    startpage = ea & 0xFF00;
    ea + = (uint16_t) x;

    अगर (स्टार्टपेज! = (ea & 0xFF00)) {// कुछ ओपकोड पर पेज-क्रॉसिंग के लिए एक चक्र जुर्माना
        दंडाद्र = १;
    }

    पीसी + = 2;
}

स्थिर शून्य अनुपस्थित () {// निरपेक्ष, वाई
    uint16_t प्रारंभ पृष्ठ;
    ea = ((uint16_t) रीड 6502 (पीसी) | ((uint16_t) रीड 6502 (पीसी + 1) << 8));
    startpage = ea & 0xFF00;
    ea + = (uint16_t) y;

    अगर (स्टार्टपेज! = (ea & 0xFF00)) {// कुछ ओपकोड पर पेज-क्रॉसिंग के लिए एक चक्र जुर्माना
        दंडाद्र = १;
    }

    पीसी + = 2;
}

स्थिर शून्य इंडस्ट्रीज़ () {// अप्रत्यक्ष
    uint16_t eahelp, eahelp2;
    eahelp = (uint16_t) रीड 6502 (पीसी) | (uint16_t) ((uint16_t) रीड 6502 (पीसी + 1) << 8);
    eahelp2 = (eahelp & 0xFF00) | ((ehelp + 1) & 0x00FF); // प्रतिकृति 6502 पृष्ठ-सीमा रैपराउंड बग
    ea = (uint16_t) रीड 6502 (ईएचएलपी) | ((uint16_t) पठन 6502 (eahelp2) << 8);
    पीसी + = 2;
}

स्थिर शून्य इंडेक्स () {// (अप्रत्यक्ष, एक्स)
    uint16_t eahelp;
    eahelp = (uint16_t) (((uint16_t) रीड 6502 (पीसी ++) + (uint16_t) x) & 0xFF); // टेबल पॉइंटर के लिए जीरो पेज रैपराउंड
    ea = (uint16_t) read6502 (eahelp & 0x00FF) | ((uint16_t) read6502 ((ehelp + 1) & 0x00FF) << 8);
}

स्थिर शून्य इंडि () {// (अप्रत्यक्ष), वाई
    uint16_t eahelp, eahelp2, startpage;
    eahelp = (uint16_t) रीड 6502 (पीसी ++);
    eahelp2 = (eahelp & 0xFF00) | ((ehelp + 1) & 0x00FF); // शून्य-पृष्ठ आवरण
    ea = (uint16_t) रीड 6502 (ईएचएलपी) | ((uint16_t) पठन 6502 (eahelp2) << 8);
    startpage = ea & 0xFF00;
    ea + = (uint16_t) y;

    अगर (स्टार्टपेज! = (ea & 0xFF00)) {// कुछ ओपकोड पर पेज-क्रॉसिंग के लिए एक चक्र जुर्माना
        दंडाद्र = १;
    }
}

स्थिर uint16_t getvalue () {
    अगर (addrtable [opcode] == acc) वापसी ((uint16_t) a);
        और वापसी (uint16_t) रीड 6502 (ईआर));
}

स्थैतिक शून्य पुटुले (uint16_t बचत) {
    अगर (addrtable [opcode] == एसीसी) a = (uint8_t) (बचत और 0x00FF);
        अन्य राइट 6502 (ea, (बचत और 0x00FF));
}


// निर्देश हैंडलर फ़ंक्शन
स्थिर शून्य () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    परिणाम = (uint16_t) एक + मूल्य + (uint16_t) (स्थिति और FLAG_CARRY);

    carrycalc (परिणाम);
    zerocalc (परिणाम);
    अतिप्रवाह (परिणाम, ए, मूल्य);
    signcalc (परिणाम);

    #ifndef NES_CPU
    यदि (स्थिति और FLAG_DECIMAL) {
        clearcarry ();

        अगर ((a & 0x0F)> 0x09) {
            ए + = 0x06;
        }
        अगर ((a & 0xF0)> 0x90) {
            ए + = 0x60;
            setcarry ();
        }

        clockticks6502 ++;
    }
    #अगर अंत

    saveaccum (परिणाम);
}

स्थिर शून्य और () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    परिणाम = (uint16_t) a & value;

    zerocalc (परिणाम);
    signcalc (परिणाम);

    saveaccum (परिणाम);
}

स्थिर शून्य asl () {
    मूल्य = getvalue ();
    परिणाम = मान << 1;

    carrycalc (परिणाम);
    zerocalc (परिणाम);
    signcalc (परिणाम);

    putvalue (परिणाम);
}

स्थिर शून्य bcc () {
    अगर (स्थिति और FLAG_CARRY) == 0) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य बक्स () {
    अगर (स्थिति और FLAG_CARRY) == FLAG_CARRY) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य beq () {
    अगर (स्थिति और FLAG_ZERO) == FLAG_ZERO) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य बिट () {
    मूल्य = getvalue ();
    परिणाम = (uint16_t) a & value;

    zerocalc (परिणाम);
    स्टेटस = (स्थिति & 0x3F) | (uint8_t) (मान & 0xC0);
}

स्थिर शून्य बीएमआई () {
    अगर (स्थिति और FLAG_SIGN) == FLAG_SIGN) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य () {
    अगर (स्थिति और FLAG_ZERO) == 0) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य bpl () {
    अगर (स्थिति और FLAG_SIGN) == 0) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य brk () {
    पीसी ++;
    push16 (पीसी); // स्टैक पर अगले निर्देश पते को धक्का दें
    push8 (स्थिति | FLAG_BREAK); // ढेर करने के लिए सीपीयू स्थिति धक्का
    setinterrupt (); // सेट इंटरप्ट फ्लैग
    pc = (uint16_t) रीड 6502 (0xFFFE) | ((uint16_t) रीड 6502 (0xFFFF) << 8);
}

स्थिर शून्य पीवीसी () {
    अगर (स्थिति और FLAG_OVERFLOW) == 0) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य bvs () {
    अगर (स्थिति और FLAG_OVERFLOW) == FLAG_OVERFLOW) {
        पुराना पीसी = पीसी;
        PC + = reladdr;
        if ((oldpc & 0xFF00)! = (pc & 0xFF00)) clockticks6502 + = 2; // चेक करें कि क्या जंप ने पृष्ठ सीमा पार की है
            और घड़ीसाज़ 6502 ++;
    }
}

स्थिर शून्य clc () {
    clearcarry ();
}

स्थिर शून्य cld () {
    cleardecimal ();
}

स्थिर शून्य क्ली () {
    clearinterrupt ();
}

स्थिर शून्य clv () {
    clearoverflow ();
}

स्थिर शून्य cmp () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    परिणाम = (uint16_t) a - मूल्य;

    if (a> = (uint8_t) (मान और 0x00FF)) setcarry ();
        और स्पष्टता ();
    अगर (a == (uint8_t) (मान & 0x00FF)) सेज़रो ();
        और क्लीज़रो ();
    signcalc (परिणाम);
}

स्थिर शून्य cpx () {
    मूल्य = getvalue ();
    परिणाम = (uint16_t) x - मान;

    अगर (x> = (uint8_t) (मान और 0x00FF)) सेटकार्री ();
        और स्पष्टता ();
    अगर (x == (uint8_t) (मान और 0x00FF)) सेज़रो ();
        और क्लीज़रो ();
    signcalc (परिणाम);
}

स्थिर शून्य खांसी () {
    मूल्य = getvalue ();
    परिणाम = (uint16_t) y - मूल्य;

    अगर (y> = (uint8_t) (मान और 0x00FF)) सेटकार्री ();
        और स्पष्टता ();
    if (y == (uint8_t) (मान और 0x00FF)) सेज़रो ();
        और क्लीज़रो ();
    signcalc (परिणाम);
}

स्थिर शून्य से () {
    मूल्य = getvalue ();
    परिणाम = मूल्य - 1;

    zerocalc (परिणाम);
    signcalc (परिणाम);

    putvalue (परिणाम);
}

स्थिर शून्य डेक्स () {
    एक्स--;

    zerocalc (x);
    signcalc (x);
}

स्थिर शून्य दे () {
    y--;

    zerocalc (y);
    signcalc (y);
}

स्थिर शून्य () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    परिणाम = (uint16_t) ए ^ मूल्य;

    zerocalc (परिणाम);
    signcalc (परिणाम);

    saveaccum (परिणाम);
}

स्थिर शून्य इंक () {
    मूल्य = getvalue ();
    परिणाम = मूल्य + 1;

    zerocalc (परिणाम);
    signcalc (परिणाम);

    putvalue (परिणाम);
}

स्थिर शून्य inx () {
    एक्स ++;

    zerocalc (x);
    signcalc (x);
}

स्थिर शून्य () {
    y ++;

    zerocalc (y);
    signcalc (y);
}

स्थिर शून्य jmp () {
    PC = ea;
}

स्थिर शून्य jsr () {
    push16 (पीसी - 1);
    PC = ea;
}

स्थिर शून्य lda () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    a = (uint8_t) (मान & 0x00FF);

    zerocalc (क);
    signcalc (क);
}

स्थिर शून्य ldx () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    x = (uint8_t) (मान & 0x00FF);

    zerocalc (x);
    signcalc (x);
}

स्थिर शून्य () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    y = (uint8_t) (मूल्य और 0x00FF);

    zerocalc (y);
    signcalc (y);
}

स्थिर शून्य lsr () {
    मूल्य = getvalue ();
    परिणाम = मूल्य >> 1;

    अगर (मान & 1) सेटकार्री ();
        और स्पष्टता ();
    zerocalc (परिणाम);
    signcalc (परिणाम);

    putvalue (परिणाम);
}

स्थिर शून्य () {
    स्विच (opcode) {
        मामला 0x1C:
        मामला 0x3C:
        मामला 0x5C:
        मामला 0x7C:
        मामला 0xDC:
        मामला 0xFC:
            पेनलोप = 1;
            टूटना;
    }
}

स्थिर शून्य () {
    पेनलोप = 1;
    मूल्य = getvalue ();
    परिणाम = (uint16_t) ए | मूल्य;

    zerocalc (परिणाम);
    signcalc (परिणाम);

    saveaccum (परिणाम);
}

स्थिर शून्य चरण () {
    push8 (क);
}

स्थिर शून्य php () {
    push8 (स्थिति | FLAG_BREAK);
}

स्थिर शून्य प्लाया () {
    a = pull8 ();

    zerocalc (क);
    signcalc (क);
}

स्थिर शून्य plp () {
    स्टेटस = पुल 8 () | FLAG_CONSTANT;
}

स्थिर शून्य रोल () {
    मूल्य = getvalue ();
    परिणाम = (मूल्य << 1) | (स्थिति और FLAG_CARRY);

    carrycalc (परिणाम);
    zerocalc (परिणाम);
    signcalc (परिणाम);

    putvalue (परिणाम);
}

स्थिर शून्य रोर () {
    मूल्य = getvalue ();
    परिणाम = (मूल्य >> 1) | ((स्थिति & FLAG_CARRY) << 7);

    अगर (मान & 1) सेटकार्री ();
        और स्पष्टता ();
    zerocalc (परिणाम);
    signcalc (परिणाम);

    putvalue (परिणाम);
}

स्थिर शून्य आरटीआई () {
    स्थिति = पुल 8 ();
    मूल्य = pull16 ();
    पीसी = मूल्य;
}

स्थिर शून्य आरटीएस () {
    मूल्य = pull16 ();
    पीसी = मान + 1;
}

स्थिर शून्य sbc () {
    पेनलोप = 1;
    मान = getvalue () ^ 0x00FF;
    परिणाम = (uint16_t) एक + मूल्य + (uint16_t) (स्थिति और FLAG_CARRY);

    carrycalc (परिणाम);
    zerocalc (परिणाम);
    अतिप्रवाह (परिणाम, ए, मूल्य);
    signcalc (परिणाम);

    #ifndef NES_CPU
    यदि (स्थिति और FLAG_DECIMAL) {
        clearcarry ();

        ए - = 0x66;
        अगर ((a & 0x0F)> 0x09) {
            ए + = 0x06;
        }
        अगर ((a & 0xF0)> 0x90) {
            ए + = 0x60;
            setcarry ();
        }

        clockticks6502 ++;
    }
    #अगर अंत

    saveaccum (परिणाम);
}

स्थिर शून्य सेकंड () {
    setcarry ();
}

स्थिर शून्य सेड () {
    setdecimal ();
}

स्थिर शून्य सेई () {
    setinterrupt ();
}

स्थिर शून्य sta () {
    putvalue (क);
}

स्थिर शून्य स्टॉक्स () {
    putvalue (x);
}

स्थिर शून्य शैली () {
    putvalue (y);
}

स्थिर शून्य कर () {
    x = ए;

    zerocalc (x);
    signcalc (x);
}

स्थिर शून्य () {
    य = ए;

    zerocalc (y);
    signcalc (y);
}

स्थिर शून्य tsx () {
    x = सपा;

    zerocalc (x);
    signcalc (x);
}

स्थिर शून्य txa () {
    ए = एक्स;

    zerocalc (क);
    signcalc (क);
}

स्थिर शून्य txs () {
    sp = x;
}

स्थिर शून्य () {
    a = y;

    zerocalc (क);
    signcalc (क);
}

// अनिर्दिष्ट निर्देश
#ifdef UNDOCUMENTED
    स्थिर शून्य लक्स () {
        झील प्राधिकरण ();
        LDX ();
    }

    स्थिर शून्य सैक्स () {
        स्टेशन ();
        stx ();
        putvalue (a & x);
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }

    स्थिर शून्य dcp () {
        दिसम्बर ();
        सीएमपी ();
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }

    स्थिर शून्य () {
        इंक ();
        SBC ();
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }

    स्थिर शून्य का नारा () {
        एएसएल ();
        ओरा ();
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }

    स्थिर शून्य राला () {
        ROL ();
        तथा();
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }

    स्थिर शून्य sre () {
        LSR ();
        ईओआर ();
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }

    स्थिर शून्य आरआरए () {
        ROR ();
        एडीसी ();
        if (पेनलोप और& पेनलैडड्र) क्लॉकटिक्स 6502--;
    }
#अन्य
    # डेफिन लैक्स नॉप
    # डेफिन सैक्स नं
    # डेफिन डीसीपी एनओपी
    # डेफिन इसब नॉप
    # डेफिन स्लो एनओपी
    # डेफिन रला नोप
    # डेफिन सेरे नोप
    # डेफिन आरआरए एनओपी
#अगर अंत


स्थिर शून्य (* addrtable [256]) () = {
/ * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ए | B | सी | डी | ई | एफ | * /
/ * 0 * / imp, indx, imp, indx, zp, zp, zp, zp, imp, imm, acc, imm, abso, abso, abso, abso, / * * 0 * /
/ * 1 * / rel, indy, imp, indy, zpx, zpx, zpx, zpx, imp, absy, imp, absy, absx, absx, absx, absx, absx, / * 1 * /
/ * 2 * / abso, indx, imp, indx, zp, zp, zp, zp, imp, imm, acc, imm, abso, abso, abso, abso, / * 2 * /
/ * 3 * / rel, indy, imp, indy, zpx, zpx, zpx, zpx, imp, absy, imp, absy, absx, absx, absx, absx, absx, / * 3 * /
/ * 4 * / imp, indx, imp, indx, zp, zp, zp, zp, imp, imm, acc, imm, abso, abso, abso, abso, / * 4 * /
/ * 5 * / rel, indy, imp, indy, zpx, zpx, zpx, zpx, imp, absy, imp, absy, absx, absx, absx, absx, absx, / * 5 * /
/ * 6 * / imp, indx, imp, indx, zp, zp, zp, zp, imp, imm, acc, imm, ind, abso, abso, abso, / * 6 * /
/ * 7 * / rel, indy, imp, indy, zpx, zpx, zpx, zpx, imp, absy, imp, absy, absx, absx, absx, absx, absx, / * 7 * /
/ * 8 * / imm, इंडेक्स, imm, इंडेक्स, zp, zp, zp, zp, imp, imm, imp, Imm, abso, abso, abso, abso, / * 8 * /
/ * 9 * / rel, indy, imp, indy, zpx, zpx, zpy, zpy, imp, absy, imp, absy, absx, absx, absx, absy, absy, / * * 9 * /
/ * ए * / ईएनडी, ईएक्सएक्स, ईएमडी, इंडेक्स, जेडपी, जेडपी, जेडपी, जेडपी, छोटा सा भूत, आईएम, आईएम, एब्स, एब्स, एब्सो, एब्सो, / * ए * /
/ * B * / rel, indy, imp, indy, zpx, zpx, zpy, zpy, imp, absy, imp, absy, absx, absx, absx, absy, absy, / * B * /
/ * C * / imm, indx, imm, indx, zp, zp, zp, zp, imp, imm, imp, Imm, abso, abso, abso, abso, / * C * /
/ * D * / rel, indy, imp, indy, zpx, zpx, zpx, zpx, imp, absy, imp, absy, absx, absx, absx, absx, absx, / * D * /
/ * ई * / ईएनडी, इंडेक्स, एक्सएक्सएक्स, इंडेक्स, जेडपी, जेडपी, जेडपी, जेडपी, छोटा सा भूत, ईएमपी, एबी, एसो, एब्सो, एब्सो, / * ई * /
/ * F * / rel, indy, imp, indy, zpx, zpx, zpx, zpx, imp, absy, imp, absy, absx, absx, absx, absx / * F * /
};

स्थिर शून्य (* वैकल्पिक [256]) () = {
/ * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ए | B | सी | डी | ई | एफ | * /
/ * 0 * / brk, ora, nop, slo, nop, ora, asl, slo, php, ora, asl, nop, nop, ora, asl, slo, / * 0 * /
/ * 1 * / bpl, ora, nop, slo, nop, ora, asl, slo, clc, ora, nop, slo, nop, ora, asl, slo, / * 1 * /
/ * 2 * / jsr, और, एनओपी, आरएलए, बिट, और, रोल, आरएलए, पीएलपी, और, रोल, एनओपी, बिट, और, रोल, आरएलए, / * 2 * /
/ * 3 * / bmi, और, nop, rla, nop, और, rol, rla, sec, और, nop, rla, nop और, rol, rla, / * 3 * /
/ * 4 * / आरटीआई, ईओआर, एनओपी, एसआरई, एनओपी, ईएसआर, एलएसआर, एसआरए, फे, ईओआर, एलएसआर, एनओपी, जेएमपी, ईआरआर, एलएसआर, एसआरई, / * 4 * /
/ * 5 * / bvc, eor, nop, sre, nop, eor, lsr, sre, cli, eor, nop, sre, nop, eor, lsr, sre, / 5 * /
/ * 6 * / आरटीएस, एडीसी, एनओपी, आरआरए, एनओपी, आरसीआर, आरएआर, आरएआर, पीएलए, एडीसी, आरओआर, एनओपी, जेएमपी, एडीसी, आरओआर, आरएआर, / * 6/3/
/ * 7 * / bvs, adc, nop, rra, nop, adc, ror, rra, sei, adc, nop, rra, nop, adc, ror, rra, / 7/7 / /
/ * 8 * / nop, sta, nop, sax, style, sta, stx, sax, dex, nop, txa, nop, style, sta, stx, sax, / * 8 * *
/ * 9 * / bcc, sta, nop, nop, style, sta, stx, sax, tya, sta, txs, nop, nop, sta, nop, nop, / * 9/3/
/ * ए * / ldy, lda, ldx, lax, ldy, lda, ldx, lax, tay, lda, tax, nop, ldy, lda, ldx, lax, / A * /
/ * बी * / बीसीएस, एलडीए, एनओपी, लैक्स, एलडीआई, एलडीए, एलएक्सएक्स, एलएक्स, एलडीए, टीएक्सएक्स, एलएक्स, एलडीआई, एलडीए, एलडीएक्स, लैक्स, / * बी * /
/ * C * / cpy, cmp, nop, dcp, cpy, cmp, dec, dcp, iny, cmp, dex, nop, cpy, cmp, dec, dcp, / * * *
/ * D * / bne, cmp, nop, dcp, nop, cmp, dec, dcp, cld, cmp, nop, dcp, nop, cmp, dec, dcp, / D * / /
/ * E * / cpx, sbc, nop, isb, cpx, sbc, inc, isb, inx, sbc, nop, sbc, cpx, sbc, inc, isb, / * E * /
/ * F * / beq, sbc, nop, isb, nop, sbc, inc, isb, sed, sbc, nop, isb, nop, sbc, inc, isb / * F / /
};

स्थिर कास्ट uint32_t टिकटेबल [256] = {
/ * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ए | B | सी | डी | ई | एफ | * /
/ * 0 * / 7, 6, 2, 8, 3, 3, 5, 5, 3, 2, 2, 2, 4, 4, 6, 6, / * 0 * /
/ * 1 * / 2, 5, 2, 8, 4, 4, 6, 6, 2, 4, 2, 7, 4, 4, 7, 7, / * 1 * /
/ * 2 * / 6, 6, 2, 8, 3, 3, 5, 5, 4, 2, 2, 2, 4, 4, 6, 6, / * 2 * /
/ * 3 * / 2, 5, 2, 8, 4, 4, 6, 6, 2, 4, 2, 7, 4, 4, 7, 7, / * 3 * /
/ * 4 * / 6, 6, 2, 8, 3, 3, 5, 5, 3, 2, 2, 2, 3, 4, 6, 6, / * 4 * /
/ * 5 * / 2, 5, 2, 8, 4, 4, 6, 6, 2, 4, 2, 7, 4, 4, 7, 7, / * 5 * /
/ * 6 * / 6, 6, 2, 8, 3, 3, 5, 5, 4, 2, 2, 2, 5, 4, 6, 6, / * 6 * /
/ * 7 * / 2, 5, 2, 8, 4, 4, 6, 6, 2, 4, 2, 7, 4, 4, 7, 7, / * 7 * /
/ * 8 * / 2, 6, 2, 6, 3, 3, 3, 3, 3, 2, 2, 2, 2, 4, 4, 4, 4, / * 8 * /
/ * 9 * / 2, 6, 2, 6, 4, 4, 4, 4, 4, 2, 5, 2, 5, 5, 5, 5, 5, / * 9 * /
/ * ए * / 2, 6, 2, 6, 3, 3, 3, 3, 2, 2, 2, 2, 4, 4, 4, 4, / * ए * /
/ * B * / 2, 5, 2, 5, 4, 4, 4, 4, 4, 2, 4, 2, 4, 4, 4, 4, / * B * /
/ * C * / 2, 6, 2, 8, 3, 3, 5, 5, 2, 2, 2, 2, 2, 4, 6, 6, / * C * /
/ * डी * / 2, 5, 2, 8, 4, 4, 6, 6, 2, 4, 2, 7, 4, 4, 7, 7, / * डी * /
/ * ई * / 2, 6, 2, 8, 3, 3, 5, 5, 2, 2, 2, 2, 4, 4, 6, 6, / * ई * /
/ * एफ * / 2, 5, 2, 8, 4, 4, 6, 6, 2, 4, 2, 7, 4, 4, 7, 7 / * एफ * /
};


शून्य nmi6502 () {
    push16 (पीसी);
    push8 (स्थिति);
    स्थिति | = FLAG_INTERRUPT;
    pc = (uint16_t) रीड 6502 (0xFFFA) | ((uint16_t) पठन 6502 (0xFFFB) << 8);
}

शून्य irq6502 () {
    push16 (पीसी);
    push8 (स्थिति);
    स्थिति | = FLAG_INTERRUPT;
    pc = (uint16_t) रीड 6502 (0xFFFE) | ((uint16_t) रीड 6502 (0xFFFF) << 8);
}

uint8_t कैलक्लेरेंट = 0;
शून्य (* लूपटेक्स्टर्न) ();

शून्य निष्पादित 6502 (uint32_t टिककाउंट) {
    clockgoal6502 + = टिक्काउंट;

    जबकि (क्लॉकटिक्स 6502 <क्लॉकगोला 6502) {
        opcode = read6502 (पीसी ++);

        दंड = 0;
        दंडाद्र्ध = ०;

        (* Addrtable [opcode]) ();
        (* Optable [opcode]) ();
        क्लॉकटिक्स 6502 + = टिकटेबल [ओपकोड];
        if (पेनलोप && पेनलैडड्र) क्लॉकटिक्स 6502 ++;

        निर्देश ++;

        यदि (कैलेक्सैनेटिक) (* लूपेक्सटर्न) ();
    }

}

शून्य चरण 6502 () {
    opcode = read6502 (पीसी ++);

    दंड = 0;
    दंडाद्र्ध = ०;

    (* Addrtable [opcode]) ();
    (* Optable [opcode]) ();
    क्लॉकटिक्स 6502 + = टिकटेबल [ओपकोड];
    if (पेनलोप && पेनलैडड्र) क्लॉकटिक्स 6502 ++;
    क्लॉकगोला 6502 = क्लॉकटिक्स 6502;

    निर्देश ++;

    यदि (कैलेक्सैनेटिक) (* लूपेक्सटर्न) ();
}

शून्य हुक-रहित (शून्य * कवक) {
    अगर (funcptr! = (void *) NULL) {
        लूपेक्सटर्न = फंकप्ट्र;
        कैलेस्टर्न = 1;
    } और कैलक्लेरेंट = 0;
}

FYI करें, यदि आप मार्किंग कोड (चार स्थानों द्वारा इंडेंट) की मार्कडाउन विधि का उपयोग करते हैं, तो यह एक स्क्रीन-आकार वाले स्क्रॉल क्षेत्र में होगा; और आपको html-ize <टैग कोष्ठक> की आवश्यकता नहीं है। ... लेकिन इस जवाब के लिए, मुझे वास्तव में ऐसा लगता है कि यह बेहतर है। संदर्भ-कार्यान्वयन के रूप में, यह उस स्थान को डालता है जो बहुत अच्छे उपयोग के लिए लेता है। ... यदि / जब अधिक उत्तर आते हैं, तो आप 4-स्थान इंडेंट पर स्विच करना चाह सकते हैं ताकि यह पृष्ठ पर हावी न हो। $ 0.02 ... प्रश्न से प्यार करें ... +1 +1 +1! मैं मेरा काम कर रहा हूँ, तुम चिंता मत करो! :)
luser droog

21

हास्केल में एक एमओएस 6502 एमुलेटर। विशेषताओं में शामिल:

  • इंडेक्सिंग और इनडायरेक्शन के दौरान सूक्ष्म पी रजिस्टर हैंडलिंग और पेज रैपिंग सहित सटीक सटीक कार्यान्वयन
  • मेमोरी मैप्ड IO, स्पिन लूप डिटेक्शन के साथ (इसलिए होस्ट सीपीयू इनपुट की प्रतीक्षा करते समय खूंटी नहीं करता है)
  • पड़ाव का पता लगाना (स्वयं कूदना)
  • सीपीयू ने 200 लाइनों और कोड के 6502 वर्णों में लागू किया
  • सीपीयू कार्यान्वयन शुद्ध राज्य मोनड है

यह कुछ हद तक पूर्ण कार्यान्वयन का गोल्फ संस्करण है (अधिक विशेषताओं के साथ) मैंने इस चुनौती के लिए किया था जिसे मैं बाद में पोस्ट करूंगा। गोल्फ के बावजूद, कोड अभी भी सीधे आगे है। केवल ज्ञात गुम सुविधा बीसीडी मोड है (आ रहा है ...)

EhBASIC कोड चलाता है:

& ghc -O2 -o z6502min -Wall -fwarn-tabs -fno-warn-missing-signatures Z6502.hs
[1 of 1] Compiling Main             ( Z6502.hs, Z6502.o )

Z6502.hs:173:1: Warning: Defined but not used: `nmi'

Z6502.hs:174:1: Warning: Defined but not used: `irq'
Linking z6502min ...

& ./z6502min ehbasic.bin 
6502 EhBASIC [C]old/[W]arm ?

Memory size ? 

48383 Bytes free

Enhanced BASIC 2.22

Ready
PRINT "Hello World"
Hello World

Ready
10 FOR I = 1 TO 10
20 FOR J = 1 TO I
30 PRINT J;
40 NEXT J
50 PRINT
60 NEXT I
RUN
 1
 1 2
 1 2 3
 1 2 3 4
 1 2 3 4 5
 1 2 3 4 5 6
 1 2 3 4 5 6 7
 1 2 3 4 5 6 7 8
 1 2 3 4 5 6 7 8 9
 1 2 3 4 5 6 7 8 9 10

Ready

और कोड, कुल 300 लाइनों के नीचे:

-- Z6502: a 6502 emulator
-- by Mark Lentczner

module Main (main) where

import Control.Applicative
import Control.Monad
import Control.Monad.State.Strict
import Data.Bits
import qualified Data.ByteString as B
import Data.List
import qualified Data.Vector as V
import qualified Data.Vector.Unboxed as VU
import Data.Word
import System.Environment
import System.IO

{- === CPU: 200 lines, 6502 characters === -}
type Addr = Word16
toAd = fromIntegral :: Int -> Addr
addr :: Word8 -> Word8 -> Addr
addr lo hi = fromIntegral hi `shiftL` 8 .|. fromIntegral lo
lohi ad = (fromIntegral ad, fromIntegral $ ad `shiftR` 8)
zeroPage v = addr v 0
index ad idx = ad + fromIntegral (idx :: Word8)
relativeAddr ad off = index ad off - if off > 0x7f then 256 else 0

data Page = Missing | ROM !B.ByteString | RAM !(VU.Vector Word8)
type Memory = V.Vector Page
emptyMemory = V.replicate 256 Missing

fetchByte ad mv = case mv V.! hi of
    ROM bs -> B.index bs lo
    RAM vs -> vs VU.! lo
    _ -> 0
  where (hi,lo) = fromIntegral ad `divMod` 256
storeByte ad v mv = case mv V.! hi of
    RAM vs -> mv V.// [(hi, RAM $ vs VU.// [(lo, v)])]
    _ -> mv
  where (hi,lo) = fromIntegral ad `divMod` 256

data S = S { rA, rX, rY, rP, rS :: !Word8, rPC :: !Addr
           , mem :: !Memory, busR,busW :: Maybe Addr }
powerOnState = S 0 0 0 0 0 0 emptyMemory Nothing Nothing

[bitN, bitV, bitX, bitB, bitD, bitI, bitZ, bitC] = [7,6..0]
toBit b t v = (if t then setBit else clearBit) v b
toZ v = toBit bitZ (v == 0)
toZN v = toBit bitZ (v == 0) . toBit bitN (testBit v 7)
to67 v = toBit bitV (testBit v 6) . toBit bitN (testBit v 7)

setZN v = modify $ \s -> s { rP = toZN v $ rP s }
setAZN v = modify $ \s -> s { rA = v, rP=toZN v $ rP s }
setXZN v = modify $ \s -> s { rX = v, rP=toZN v $ rP s }
setYZN v = modify $ \s -> s { rY = v, rP=toZN v $ rP s }
setZVNbit (a,v) = modify $ \s -> s { rP = toZ (a .&. v) $ to67 v $ rP s }
setACZVN (c,v,a) = modify $ \s ->
    s { rA = a, rP = toBit bitC c $ toBit bitV v $ toZN a $ rP s }
setCZN (c,v) = modify $ \s -> s { rP = toBit bitC c $ toZN v $ rP s }

fetch a = state $ \s -> (fetchByte a $ mem s, s { busR = Just a })
fetchIndirectAddr a0 = do
    m <- gets mem
    let (lo,hi) = lohi a0
        a1 = addr (lo+1) hi
        bLo = fetchByte a0 m
        bHi = fetchByte a1 m
    return $ addr bLo bHi
store a v = modify $ \s -> s { mem = storeByte a v $ mem s, busW = Just a }

clearBus = modify $ \s -> s { busR = Nothing, busW = Nothing }
nextPC = state $ \s -> (rPC s, s { rPC = rPC s + 1 })
fetchPC = nextPC >>= \a -> gets mem >>= return . fetchByte a

adjSP n m = state $ \s -> (addr (rS s + m) 1, s { rS = rS s + n })
push v = adjSP (-1) 0 >>= flip store v
pull = adjSP 1 1 >>= fetch
pushAddr a = let (lo, hi) = lohi a in push hi >> push lo
pullAddr = addr <$> pull <*> pull
pushP fromSW = gets rP >>= push . toBit bitX True . toBit bitB fromSW
pullP = pull >>= \v -> modify $ \s -> s { rP = v .&. 0xCF }

indexX a = gets rX >>= return . index a
indexY a = gets rY >>= return . index a
aImm=nextPC
aZero=zeroPage<$>fetchPC
aZeroX=zeroPage<$>((+)<$>fetchPC<*>gets rX)
aZeroY=zeroPage<$>((+)<$>fetchPC<*>gets rY)
aRel=flip relativeAddr<$>fetchPC<*>gets rPC
aAbs=addr<$>fetchPC<*>fetchPC
aAbsX=aAbs>>=indexX
aAbsY=aAbs>>=indexY
aInd=aAbs>>=fetchIndirectAddr
aIndIdx=aZeroX>>=fetchIndirectAddr
aIdxInd=aZero>>=fetchIndirectAddr>>=indexY

decode = V.fromList $ concat $ transpose
 [[iBRK,iBPL,iJSR&aAbs,iBMI,iRTI,iBVC,iRTS,iBVS
  ,iErr,iBCC,iLDY&aImm,iBCS,iCPY&aImm,iBNE,iCPX&aImm,iBEQ]
 ,cAlu aIndIdx aIdxInd
 ,cErr//(10,iLDX&aImm)
 ,cErr
 ,[iErr,iErr,iBIT&aZero,iErr,iErr,iErr,iErr,iErr
  ,iSTY&aZero,iSTY&aZeroX,iLDY&aZero,iLDY&aZeroX,iCPY&aZero,iErr,iCPX&aZero,iErr]
 ,cAlu aZero aZeroX
 ,cBit aZero aZeroX//(9,iSTX&aZeroY)//(11,iLDX&aZeroY)
 ,cErr
 ,[iPHP,iCLC,iPLP,iSEC,iPHA,iCLI,iPLA,iSEI,iDEY,iTYA,iTAY,iCLV,iINY,iCLD,iINX,iSED]
 ,cAlu aImm aAbsY//(8,iErr)
 ,[iASLa,iErr,iROLa,iErr,iLSRa,iErr,iRORa,iErr
  ,iTXA,iTXS,iTAX,iTSX,iDEX,iErr,iNOP,iErr ]
 ,cErr
 ,[iErr,iErr,iBIT&aAbs,iErr,iJMP&aAbs,iErr,iJMP&aInd,iErr
  ,iSTY&aAbs,iErr,iLDY&aAbs,iLDY&aAbsX,iCPY&aAbs,iErr,iCPX&aAbs,iErr]
 ,cAlu aAbs aAbsX
 ,cBit aAbs aAbsX//(9,iErr)//(11,iLDX&aAbsY)
 ,cErr
 ]
cAlt is e o = is >>= (\i->[i&e,i&o])
cAlu = cAlt [iORA,iAND,iEOR,iADC,iSTA,iLDA,iCMP,iSBC]
cBit = cAlt [iASL,iROL,iLSR,iROR,iSTX,iLDX,iDEC,iINC]
cErr = replicate 16 iErr
is//(n,j) = let (f,_:h) = splitAt n is in f++j:h
i&a=a>>=i

loadIns l a = fetch a >>= l
storeIns f a = f >>= store a

aluIns set op ad = do
    v <- fetch ad
    a <- gets rA
    set $ op a v

modIns op a = fetch a >>= op >>= store a
modAccIns op = gets rA >>= op >>= \v -> modify $ \s -> s { rA = v }

stIns b op = modify $ \s -> s { rP = op (rP s) b }

jump a = modify $ \s -> s { rPC = a }
brIns b t = do
    a <- aRel
    p <- gets rP
    when (testBit p b == t) $ jump a

adcOp a b cIn = (cOut, v, s)
  where
    h = b + (if cIn then 1 else 0)
    s = a + h
    cOut = h < b || s < a
    v = testBit (a `xor` s .&. b `xor` s) 7
sbcOp a b cIn = adcOp a (complement b) cIn
carryOp f = gets rP >>= setACZVN . f . flip testBit bitC

cmpOp a b = (a >= b, a - b)

shiftOp shifter isRot inBit outBit v = do
    s <- get
    let newC = testBit v outBit
        bitIn = toBit inBit $ isRot && testBit (rP s) bitC
        v' = bitIn $ shifter v 1
    put s { rP = toBit bitC newC $ toZN v' $ rP s }
    return v'

vector a = fetchIndirectAddr a >>= jump

interrupt isBrk pcOffset a = do
    gets rPC >>= pushAddr . flip index pcOffset
    pushP isBrk
    iSEI
    vector a

reset = vector $ toAd 0xFFFC
nmi = interrupt False 0 $ toAd 0xFFFA
irq = interrupt False 0 $ toAd 0xFFFE

[iORA,iAND,iEOR]=aluIns setAZN<$>[(.|.),(.&.),xor]
[iADC,iSBC]=aluIns carryOp<$>[adcOp,sbcOp]
iSTA=storeIns$gets rA
iLDA=loadIns setAZN
iCMP=aluIns setCZN cmpOp

[iSTX,iSTY]=storeIns.gets<$>[rX,rY]
[iLDX,iLDY]=loadIns<$>[setXZN,setYZN]
[iCPX,iCPY]=(\r a->gets r>>= \v->fetch a>>=setCZN.cmpOp v)<$>[rX,rY]
[iDEC,iINC]=modIns.(\i v->setZN(v+i)>>return(v+i))<$>[-1,1]
[iDEX,iINX]=(gets rX>>=).(setXZN.).(+)<$>[-1,1]
[iDEY,iINY]=(gets rY>>=).(setYZN.).(+)<$>[-1,1]

shOps=[shiftOp d r b(7-b)|(d,b)<-[(shiftL,0),(shiftR,7)],r<-[False,True]]
[iASL,iROL,iLSR,iROR]=modIns<$>shOps
[iASLa,iROLa,iLSRa,iRORa]=modAccIns<$>shOps

iBIT=aluIns setZVNbit(,)
iJMP=jump

[iBPL,iBMI,iBVC,iBVS,iBCC,iBCS,iBNE,iBEQ]=brIns<$>[bitN,bitV,bitC,bitZ]<*>[False,True]
[iCLC,iSEC,iCLI,iSEI,iCLV,_,iCLD,iSED]=stIns<$>[bitC,bitI,bitV,bitD]<*>[clearBit,setBit]

iBRK=interrupt True 1 $ toAd 0xFFFE
iJSR a=gets rPC>>=pushAddr.(-1+)>>jump a
iRTI=iPLP>>pullAddr>>=jump
iRTS=pullAddr>>=jump.(1+)

iPHP=pushP True
iPLP=pullP
iPHA=gets rA>>=push
iPLA=pull>>=setAZN

iNOP=return ()

[iTAX,iTAY]=(gets rA>>=)<$>[setXZN,setYZN]
[iTXA,iTYA]=(>>=setAZN).gets<$>[rX,rY]
iTXS=modify $ \s -> s { rS=rX s }
iTSX=gets rS>>=setXZN

iErr=gets rPC>>=jump.(-1+)

executeOne = clearBus >> fetchPC >>= (decode V.!) . fromIntegral
{- === END OF CPU === -}


{- === MOTHERBOARD === -}
buildMemory rom =
    loadRAM 0xF0 1 $ loadRAM 0x00 ramSize $ loadROM romStart rom $ emptyMemory
  where
    ramSize = 256 - (B.length rom `div` 256)
    romStart = fromIntegral ramSize

    loadRAM p0 n = (V.// zip [p0..] (map RAM $ replicate n ramPage))
    ramPage = VU.replicate 256 0

    loadROM p0 bs = (V.// zip [p0..] (map ROM $ romPages bs))
    romPages b = case B.length b of
        l | l == 0    -> []
          | l < 256   -> [b `B.append` B.replicate (256 - l) 0]
          | l == 256  -> [b]
          | otherwise -> let (b0,bn) = B.splitAt 256 b in b0 : romPages bn

main = getArgs >>= go
  where
    go [romFile] = B.readFile romFile >>= exec . buildState . buildMemory
    go _ = putStrLn "agument should be a single ROM file"

    buildState m = execState reset (powerOnState { mem = m })

    exec s0 = do
        stopIO <- startIO
        loop (0 :: Int) s0
        stopIO

    loop n s = do
        let pcsp = (rPC s, rS s)
        (n',s') <- processIO n (execState executeOne s)
        let pcsp' = (rPC s', rS s')
        if pcsp /= pcsp'
            then (loop $! n') $! s'
            else do
                putStrLn $ "Execution snagged at " ++ show (fst pcsp')

    startIO = do
        ibuf <- hGetBuffering stdin
        obuf <- hGetBuffering stdout
        iecho <- hGetEcho stdin
        hSetBuffering stdin NoBuffering
        hSetBuffering stdout NoBuffering
        hSetEcho stdin False
        return $ do
            hSetEcho stdin iecho
            hSetBuffering stdin ibuf
            hSetBuffering stdout obuf
            putStr "\n\n"

    processIO n s = do
        when (busW s == Just outPortAddr) $ do
            let c = fetchByte outPortAddr $ mem s
            when (c /= 0) $ hPutChar stdout $ toEnum $ fromIntegral c
        if (busR s == Just inPortAddr)
            then do
                r <- if n < 16
                        then hWaitForInput stdin 50
                        else hReady stdin
                c <- if r then (fromIntegral . fromEnum) <$> hGetChar stdin else return 0
                let c' = if c == 0xA then 0xD else c
                let s' = s { mem = storeByte inPortAddr c' $ mem s }
                return (0,s')
            else return (n+1,s)

    inPortAddr = toAd 0xF004
    outPortAddr = toAd 0xF001

5
अच्छा कार्य! बहुत छोटा। मैं हास्केल नहीं जानता, शायद मुझे सीखना चाहिए। मुझे यह सच है कि यह 6502 अक्षर है। :)
माइक सी।

6

मेरी रुचि के किसी भी व्यक्ति के लिए मैंने C # में 6502 के अपने कार्यान्वयन को साझा किया। अन्य पदों के साथ के रूप में यह पूरी तरह से ungolfed है, लेकिन एक सुविधा पूर्ण कार्यान्वयन है।

  • NMOS और CMOS का समर्थन करता है
  • यूनिट टेस्ट के रूप में ऊपर AllSuite परीक्षण सहित कई परीक्षण कार्यक्रम शामिल हैं।
  • BCD का समर्थन करता है

जब मैंने पहली बार सीपीयू के बारे में सीखा था, तब मैंने निर्देशों की स्प्रेडशीट बनाकर इस परियोजना को शुरू किया था। मुझे एहसास हुआ कि मैं इस स्प्रेडशीट का उपयोग खुद को कुछ टाइपिंग बचाने के लिए कर सकता हूं। मैंने इसे एक पाठ फ़ाइल तालिका में बदल दिया, जो एमुलेटर को चक्रों की गणना करने और आसान डिस्सैस आउटपुट के लिए लोड करने में मदद करता है।

संपूर्ण परियोजना जीथब https://github.com/amensch/e6502 पर उपलब्ध है

/*
 * e6502: A complete 6502 CPU emulator.
 * Copyright 2016 Adam Mensch
 */

using System;

namespace e6502CPU
{
    public enum e6502Type
    {
        CMOS,
        NMOS
    };

    public class e6502
    {
        // Main Register
        public byte A;

        // Index Registers
        public byte X;
        public byte Y;

        // Program Counter
        public ushort PC;

        // Stack Pointer
        // Memory location is hard coded to 0x01xx
        // Stack is descending (decrement on push, increment on pop)
        // 6502 is an empty stack so SP points to where next value is stored
        public byte SP;

        // Status Registers (in order bit 7 to 0)
        public bool NF;    // negative flag (N)
        public bool VF;    // overflow flag (V)
                           // bit 5 is unused
                           // bit 4 is the break flag however it is not a physical flag in the CPU
        public bool DF;    // binary coded decimal flag (D)
        public bool IF;    // interrupt flag (I)
        public bool ZF;    // zero flag (Z)
        public bool CF;    // carry flag (C)

        // RAM - 16 bit address bus means 64KB of addressable memory
        public byte[] memory;

        // List of op codes and their attributes
        private OpCodeTable _opCodeTable;

        // The current opcode
        private OpCodeRecord _currentOP;

        // Clock cycles to adjust due to page boundaries being crossed, branches taken, or NMOS/CMOS differences
        private int _extraCycles;

        // Flag for hardware interrupt (IRQ)
        public bool IRQWaiting { get; set; }

        // Flag for non maskable interrupt (NMI)
        public bool NMIWaiting { get; set; }

        public e6502Type _cpuType { get; set; }

        public e6502(e6502Type type)
        {
            memory = new byte[0x10000];
            _opCodeTable = new OpCodeTable();

            // Set these on instantiation so they are known values when using this object in testing.
            // Real programs should explicitly load these values before using them.
            A = 0;
            X = 0;
            Y = 0;
            SP = 0;
            PC = 0;
            NF = false;
            VF = false;
            DF = false;
            IF = true;
            ZF = false;
            CF = false;
            NMIWaiting = false;
            IRQWaiting = false;
            _cpuType = type;
        }

        public void Boot()
        {
            // On reset the addresses 0xfffc and 0xfffd are read and PC is loaded with this value.
            // It is expected that the initial program loaded will have these values set to something.
            // Most 6502 systems contain ROM in the upper region (around 0xe000-0xffff)
            PC = GetWordFromMemory(0xfffc);

            // interrupt disabled is set on powerup
            IF = true;

            NMIWaiting = false;
            IRQWaiting = false;
        }

        public void LoadProgram(ushort startingAddress, byte[] program)
        {
            program.CopyTo(memory, startingAddress);
            PC = startingAddress;
        }

        public string DasmNextInstruction()
        {
            OpCodeRecord oprec = _opCodeTable.OpCodes[ memory[PC] ];
            if (oprec.Bytes == 3)
                return oprec.Dasm( GetImmWord() );
            else
                return oprec.Dasm( GetImmByte() );
        }

        // returns # of clock cycles needed to execute the instruction
        public int ExecuteNext()
        {
            _extraCycles = 0;

            // Check for non maskable interrupt (has higher priority over IRQ)
            if (NMIWaiting)
            {
                DoIRQ(0xfffa);
                NMIWaiting = false;
                _extraCycles += 6;
            }
            // Check for hardware interrupt, if enabled
            else if (!IF)
            {
                if(IRQWaiting)
                {
                    DoIRQ(0xfffe);
                    IRQWaiting = false;
                    _extraCycles += 6;
                }
            }

            _currentOP = _opCodeTable.OpCodes[memory[PC]];

            ExecuteInstruction();

            return _currentOP.Cycles + _extraCycles;
        }

        private void ExecuteInstruction()
        {
            int result;
            int oper = GetOperand(_currentOP.AddressMode);

            switch (_currentOP.OpCode)
            {
                // ADC - add memory to accumulator with carry
                // A+M+C -> A,C (NZCV)
                case 0x61:
                case 0x65:
                case 0x69:
                case 0x6d:
                case 0x71:
                case 0x72:
                case 0x75:
                case 0x79:
                case 0x7d:

                    if (DF)
                    {
                        result = HexToBCD(A) + HexToBCD((byte)oper);
                        if (CF) result++;

                        CF = (result > 99);

                        if (result > 99 )
                        {
                            result -= 100;
                        }
                        ZF = (result == 0);

                        // convert decimal result to hex BCD result
                        A = BCDToHex(result);

                        // Unlike ZF and CF, the NF flag represents the MSB after conversion
                        // to BCD.
                        NF = (A > 0x7f);

                        // extra clock cycle on CMOS in decimal mode
                        if (_cpuType == e6502Type.CMOS)
                            _extraCycles++;
                    }
                    else
                    {
                        ADC((byte)oper);
                    }
                    PC += _currentOP.Bytes;
                    break;

                // AND - and memory with accumulator
                // A AND M -> A (NZ)
                case 0x21:
                case 0x25:
                case 0x29:
                case 0x2d:
                case 0x31:
                case 0x32:
                case 0x35:
                case 0x39:
                case 0x3d:
                    result = A & oper;

                    NF = ((result & 0x80) == 0x80);
                    ZF = ((result & 0xff) == 0x00);

                    A = (byte)result;
                    PC += _currentOP.Bytes;
                    break;

                // ASL - shift left one bit (NZC)
                // C <- (76543210) <- 0

                case 0x06:
                case 0x16:
                case 0x0a:
                case 0x0e:
                case 0x1e:

                    // On 65C02 (abs,X) takes one less clock cycle (but still add back 1 if page boundary crossed)
                    if (_currentOP.OpCode == 0x1e && _cpuType == e6502Type.CMOS)
                        _extraCycles--;

                    // shift bit 7 into carry
                    CF = (oper >= 0x80);

                    // shift operand
                    result = oper << 1;

                    NF = ((result & 0x80) == 0x80);
                    ZF = ((result & 0xff) == 0x00);

                    SaveOperand(_currentOP.AddressMode, result);
                    PC += _currentOP.Bytes;

                    break;

                // BBRx - test bit in memory (no flags)
                // Test the zero page location and branch of the specified bit is clear
                // These instructions are only available on Rockwell and WDC 65C02 chips.
                // Number of clock cycles is the same regardless if the branch is taken.
                case 0x0f:
                case 0x1f:
                case 0x2f:
                case 0x3f:
                case 0x4f:
                case 0x5f:
                case 0x6f:
                case 0x7f:

                    // upper nibble specifies the bit to check
                    byte check_bit = (byte)(_currentOP.OpCode >> 4);
                    byte check_value = 0x01;
                    for( int ii=0; ii < check_bit; ii++)
                    {
                        check_value = (byte)(check_value << 1);
                    }

                    // if the specified bit is 0 then branch
                    byte offset = memory[PC + 2];
                    PC += _currentOP.Bytes;

                    if ((oper & check_value) == 0x00)
                        PC += offset;

                    break;

                // BBSx - test bit in memory (no flags)
                // Test the zero page location and branch of the specified bit is set
                // These instructions are only available on Rockwell and WDC 65C02 chips.
                // Number of clock cycles is the same regardless if the branch is taken.
                case 0x8f:
                case 0x9f:
                case 0xaf:
                case 0xbf:
                case 0xcf:
                case 0xdf:
                case 0xef:
                case 0xff:

                    // upper nibble specifies the bit to check (but ignore bit 7)
                    check_bit = (byte)((_currentOP.OpCode & 0x70) >> 4);
                    check_value = 0x01;
                    for (int ii = 0; ii < check_bit; ii++)
                    {
                        check_value = (byte)(check_value << 1);
                    }

                    // if the specified bit is 1 then branch
                    offset = memory[PC + 2];
                    PC += _currentOP.Bytes;

                    if ((oper & check_value) == check_value)
                        PC += offset;

                    break;

                // BCC - branch on carry clear
                case 0x90:
                    PC += _currentOP.Bytes;
                    CheckBranch(!CF, oper);
                    break;

                // BCS - branch on carry set
                case 0xb0:
                    PC += _currentOP.Bytes;
                    CheckBranch(CF, oper);
                    break;

                // BEQ - branch on zero
                case 0xf0:
                    PC += _currentOP.Bytes;
                    CheckBranch(ZF, oper);
                    break;

                // BIT - test bits in memory with accumulator (NZV)
                // bits 7 and 6 of oper are transferred to bits 7 and 6 of conditional register (N and V)
                // the zero flag is set to the result of oper AND accumulator
                case 0x24:
                case 0x2c:
                // added by 65C02
                case 0x34:
                case 0x3c:
                case 0x89:
                    result = A & oper;

                    // The WDC programming manual for 65C02 indicates NV are unaffected in immediate mode.
                    // The extended op code test program reflects this.
                    if (_currentOP.AddressMode != AddressModes.Immediate)
                    {
                        NF = ((oper & 0x80) == 0x80);
                        VF = ((oper & 0x40) == 0x40);
                    }

                    ZF = ((result & 0xff) == 0x00);

                    PC += _currentOP.Bytes;
                    break;

                // BMI - branch on negative
                case 0x30:
                    PC += _currentOP.Bytes;
                    CheckBranch(NF, oper);
                    break;

                // BNE - branch on non zero
                case 0xd0:
                    PC += _currentOP.Bytes;
                    CheckBranch(!ZF, oper);
                    break;

                // BPL - branch on non negative
                case 0x10:
                    PC += _currentOP.Bytes;
                    CheckBranch(!NF, oper);
                    break;

                // BRA - unconditional branch to immediate address
                // NOTE: In OpcodeList.txt the number of clock cycles is one less than the documentation.
                // This is because CheckBranch() adds one when a branch is taken, which in this case is always.
                case 0x80:
                    PC += _currentOP.Bytes;
                    CheckBranch(true, oper);
                    break;

                // BRK - force break (I)
                case 0x00:

                    // This is a software interrupt (IRQ).  These events happen in a specific order.

                    // Processor adds two to the current PC
                    PC += 2;

                    // Call IRQ routine
                    DoIRQ(0xfffe, true);

                    // Whether or not the decimal flag is cleared depends on the type of 6502 CPU.
                    // The CMOS 65C02 clears this flag but the NMOS 6502 does not.
                    if( _cpuType == e6502Type.CMOS )
                        DF = false;

                    break;
                // BVC - branch on overflow clear
                case 0x50:
                    PC += _currentOP.Bytes;
                    CheckBranch(!VF, oper);
                    break;

                // BVS - branch on overflow set
                case 0x70:
                    PC += _currentOP.Bytes;
                    CheckBranch(VF, oper);
                    break;

                // CLC - clear carry flag
                case 0x18:
                    CF = false;
                    PC += _currentOP.Bytes;
                    break;

                // CLD - clear decimal mode
                case 0xd8:
                    DF = false;
                    PC += _currentOP.Bytes;
                    break;

                // CLI - clear interrupt disable bit
                case 0x58:
                    IF = false;
                    PC += _currentOP.Bytes;
                    break;

                // CLV - clear overflow flag
                case 0xb8:
                    VF = false;
                    PC += _currentOP.Bytes;
                    break;

                // CMP - compare memory with accumulator (NZC)
                // CMP, CPX and CPY are unsigned comparisions
                case 0xc5:
                case 0xc9:
                case 0xc1:
                case 0xcd:
                case 0xd1:
                case 0xd2:
                case 0xd5:
                case 0xd9:
                case 0xdd:

                    byte temp = (byte)(A - oper);

                    CF = A >= (byte)oper;
                    ZF = A == (byte)oper;
                    NF = ((temp & 0x80) == 0x80);

                    PC += _currentOP.Bytes;
                    break;

                // CPX - compare memory and X (NZC)
                case 0xe0:
                case 0xe4:
                case 0xec:
                    temp = (byte)(X - oper);

                    CF = X >= (byte)oper;
                    ZF = X == (byte)oper;
                    NF = ((temp & 0x80) == 0x80);

                    PC += _currentOP.Bytes;
                    break;

                // CPY - compare memory and Y (NZC)
                case 0xc0:
                case 0xc4:
                case 0xcc:
                    temp = (byte)(Y - oper);

                    CF = Y >= (byte)oper;
                    ZF = Y == (byte)oper;
                    NF = ((temp & 0x80) == 0x80);

                    PC += _currentOP.Bytes;
                    break;

                // DEC - decrement memory by 1 (NZ)
                case 0xc6:
                case 0xce:
                case 0xd6:
                case 0xde:
                // added by 65C02
                case 0x3a:
                    result = oper - 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    SaveOperand(_currentOP.AddressMode, result);

                    PC += _currentOP.Bytes;
                    break;

                // DEX - decrement X by one (NZ)
                case 0xca:
                    result = X - 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    X = (byte)result;
                    PC += _currentOP.Bytes;
                    break;

                // DEY - decrement Y by one (NZ)
                case 0x88:
                    result = Y - 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    Y = (byte)result;
                    PC += _currentOP.Bytes;
                    break;

                // EOR - XOR memory with accumulator (NZ)
                case 0x41:
                case 0x45:
                case 0x49:
                case 0x4d:
                case 0x51:
                case 0x52:
                case 0x55:
                case 0x59:
                case 0x5d:
                    result = A ^ (byte)oper;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    A = (byte)result;

                    PC += _currentOP.Bytes;
                    break;

                // INC - increment memory by 1 (NZ)
                case 0xe6:
                case 0xee:
                case 0xf6:
                case 0xfe:
                // added by 65C02
                case 0x1a:
                    result = oper + 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    SaveOperand(_currentOP.AddressMode, result);

                    PC += _currentOP.Bytes;
                    break;

                // INX - increment X by one (NZ)
                case 0xe8:
                    result = X + 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    X = (byte)result;
                    PC += _currentOP.Bytes;
                    break;

                // INY - increment Y by one (NZ)
                case 0xc8:
                    result = Y + 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    Y = (byte)result;
                    PC += _currentOP.Bytes;
                    break;

                // JMP - jump to new location (two byte immediate)
                case 0x4c:
                case 0x6c:
                // added for 65C02
                case 0x7c:

                    if (_currentOP.AddressMode == AddressModes.Absolute)
                    {
                        PC = GetImmWord();
                    }
                    else if (_currentOP.AddressMode == AddressModes.Indirect)
                    {
                        PC = (ushort)(GetWordFromMemory(GetImmWord()));
                    }
                    else if( _currentOP.AddressMode == AddressModes.AbsoluteX)
                    {
                        PC = GetWordFromMemory((GetImmWord() + X));
                    }
                    else
                    {
                        throw new InvalidOperationException("This address mode is invalid with the JMP instruction");
                    }

                    // CMOS fixes a bug in this op code which results in an extra clock cycle
                    if (_currentOP.OpCode == 0x6c && _cpuType == e6502Type.CMOS)
                        _extraCycles++;
                    break;

                // JSR - jump to new location and save return address
                case 0x20:
                    // documentation says push PC+2 even though this is a 3 byte instruction
                    // When pulled via RTS 1 is added to the result
                    Push((ushort)(PC+2));  
                    PC = GetImmWord();
                    break;

                // LDA - load accumulator with memory (NZ)
                case 0xa1:
                case 0xa5:
                case 0xa9:
                case 0xad:
                case 0xb1:
                case 0xb2:
                case 0xb5:
                case 0xb9:
                case 0xbd:
                    A = (byte)oper;

                    ZF = ((A & 0xff) == 0x00);
                    NF = ((A & 0x80) == 0x80);

                    PC += _currentOP.Bytes;
                    break;

                // LDX - load index X with memory (NZ)
                case 0xa2:
                case 0xa6:
                case 0xae:
                case 0xb6:
                case 0xbe:
                    X = (byte)oper;

                    ZF = ((X & 0xff) == 0x00);
                    NF = ((X & 0x80) == 0x80);

                    PC += _currentOP.Bytes;
                    break;

                // LDY - load index Y with memory (NZ)
                case 0xa0:
                case 0xa4:
                case 0xac:
                case 0xb4:
                case 0xbc:
                    Y = (byte)oper;

                    ZF = ((Y & 0xff) == 0x00);
                    NF = ((Y & 0x80) == 0x80);

                    PC += _currentOP.Bytes;
                    break;


                // LSR - shift right one bit (NZC)
                // 0 -> (76543210) -> C
                case 0x46:
                case 0x4a:
                case 0x4e:
                case 0x56:
                case 0x5e:

                    // On 65C02 (abs,X) takes one less clock cycle (but still add back 1 if page boundary crossed)
                    if (_currentOP.OpCode == 0x5e && _cpuType == e6502Type.CMOS)
                        _extraCycles--;

                    // shift bit 0 into carry
                    CF = ((oper & 0x01) == 0x01);

                    // shift operand
                    result = oper >> 1;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    SaveOperand(_currentOP.AddressMode, result);

                    PC += _currentOP.Bytes;
                    break;

                // NOP - no operation
                case 0xea:
                    PC += _currentOP.Bytes;
                    break;

                // ORA - OR memory with accumulator (NZ)
                case 0x01:
                case 0x05:
                case 0x09:
                case 0x0d:
                case 0x11:
                case 0x12:
                case 0x15:
                case 0x19:
                case 0x1d:
                    result = A | (byte)oper;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);

                    A = (byte)result;

                    PC += _currentOP.Bytes;
                    break;

                // PHA - push accumulator on stack
                case 0x48:
                    Push(A);
                    PC += _currentOP.Bytes;
                    break;

                // PHP - push processor status on stack
                case 0x08:
                    int sr = 0x00;

                    if (NF) sr = sr | 0x80;
                    if (VF) sr = sr | 0x40;
                    sr = sr | 0x20; // bit 5 is always 1
                    sr = sr | 0x10; // bit 4 is always 1 for PHP
                    if (DF) sr = sr | 0x08;
                    if (IF) sr = sr | 0x04;
                    if (ZF) sr = sr | 0x02;
                    if (CF) sr = sr | 0x01;

                    Push((byte)sr);
                    PC += _currentOP.Bytes;
                    break;

                // PHX - push X on stack
                case 0xda:
                    Push(X);
                    PC += _currentOP.Bytes;
                    break;

                // PHY - push Y on stack
                case 0x5a:
                    Push(Y);
                    PC += _currentOP.Bytes;
                    break;

                // PLA - pull accumulator from stack (NZ)
                case 0x68:
                    A = PopByte();
                    NF = (A & 0x80) == 0x80;
                    ZF = (A & 0xff) == 0x00;
                    PC += _currentOP.Bytes;
                    break;

                // PLP - pull status from stack
                case 0x28:
                    sr = PopByte();

                    NF = (sr & 0x80) == 0x80;
                    VF = (sr & 0x40) == 0x40;
                    DF = (sr & 0x08) == 0x08;
                    IF = (sr & 0x04) == 0x04;
                    ZF = (sr & 0x02) == 0x02;
                    CF = (sr & 0x01) == 0x01;
                    PC += _currentOP.Bytes;
                    break;

                // PLX - pull X from stack (NZ)
                case 0xfa:
                    X = PopByte();
                    NF = (X & 0x80) == 0x80;
                    ZF = (X & 0xff) == 0x00;
                    PC += _currentOP.Bytes;
                    break;

                // PLY - pull Y from stack (NZ)
                case 0x7a:
                    Y = PopByte();
                    NF = (Y & 0x80) == 0x80;
                    ZF = (Y & 0xff) == 0x00;
                    PC += _currentOP.Bytes;
                    break;

                // RMBx - clear bit in memory (no flags)
                // Clear the zero page location of the specified bit
                // These instructions are only available on Rockwell and WDC 65C02 chips.
                case 0x07:
                case 0x17:
                case 0x27:
                case 0x37:
                case 0x47:
                case 0x57:
                case 0x67:
                case 0x77:

                    // upper nibble specifies the bit to check
                     check_bit = (byte)(_currentOP.OpCode >> 4);
                     check_value = 0x01;
                    for (int ii = 0; ii < check_bit; ii++)
                    {
                        check_value = (byte)(check_value << 1);
                    }
                    check_value = (byte)~check_value;
                    SaveOperand(_currentOP.AddressMode, oper & check_value);
                    PC += _currentOP.Bytes;
                    break;

                // SMBx - set bit in memory (no flags)
                // Set the zero page location of the specified bit
                // These instructions are only available on Rockwell and WDC 65C02 chips.
                case 0x87:
                case 0x97:
                case 0xa7:
                case 0xb7:
                case 0xc7:
                case 0xd7:
                case 0xe7:
                case 0xf7:

                    // upper nibble specifies the bit to check (but ignore bit 7)
                    check_bit = (byte)((_currentOP.OpCode & 0x70) >> 4);
                    check_value = 0x01;
                    for (int ii = 0; ii < check_bit; ii++)
                    {
                        check_value = (byte)(check_value << 1);
                    }
                    SaveOperand(_currentOP.AddressMode, oper | check_value);
                    PC += _currentOP.Bytes;
                    break;

                // ROL - rotate left one bit (NZC)
                // C <- 76543210 <- C
                case 0x26:
                case 0x2a:
                case 0x2e:
                case 0x36:
                case 0x3e:

                    // On 65C02 (abs,X) takes one less clock cycle (but still add back 1 if page boundary crossed)
                    if (_currentOP.OpCode == 0x3e && _cpuType == e6502Type.CMOS)
                        _extraCycles--;

                    // perserve existing cf value
                    bool old_cf = CF;

                    // shift bit 7 into carry flag
                    CF = (oper >= 0x80);

                    // shift operand
                    result = oper << 1;

                    // old carry flag goes to bit zero
                    if (old_cf) result = result | 0x01;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);
                    SaveOperand(_currentOP.AddressMode, result);

                    PC += _currentOP.Bytes;
                    break;

                // ROR - rotate right one bit (NZC)
                // C -> 76543210 -> C
                case 0x66:
                case 0x6a:
                case 0x6e:
                case 0x76:
                case 0x7e:

                    // On 65C02 (abs,X) takes one less clock cycle (but still add back 1 if page boundary crossed)
                    if (_currentOP.OpCode == 0x7e && _cpuType == e6502Type.CMOS)
                        _extraCycles--;

                    // perserve existing cf value
                    old_cf = CF;

                    // shift bit 0 into carry flag
                    CF = (oper & 0x01) == 0x01;

                    // shift operand
                    result = oper >> 1;

                    // old carry flag goes to bit 7
                    if (old_cf) result = result | 0x80;

                    ZF = ((result & 0xff) == 0x00);
                    NF = ((result & 0x80) == 0x80);
                    SaveOperand(_currentOP.AddressMode, result);

                    PC += _currentOP.Bytes;
                    break;

                // RTI - return from interrupt
                case 0x40:
                    // pull SR
                    sr = PopByte();

                    NF = (sr & 0x80) == 0x80;
                    VF = (sr & 0x40) == 0x40;
                    DF = (sr & 0x08) == 0x08;
                    IF = (sr & 0x04) == 0x04;
                    ZF = (sr & 0x02) == 0x02;
                    CF = (sr & 0x01) == 0x01;

                    // pull PC
                    PC = PopWord();

                    break;

                // RTS - return from subroutine
                case 0x60:
                    PC = (ushort)(PopWord() + 1);
                    break;

                // SBC - subtract memory from accumulator with borrow (NZCV)
                // A-M-C -> A (NZCV)
                case 0xe1:
                case 0xe5:
                case 0xe9:
                case 0xed:
                case 0xf1:
                case 0xf2:
                case 0xf5:
                case 0xf9:
                case 0xfd:

                    if (DF)
                    {
                        result = HexToBCD(A) - HexToBCD((byte)oper);
                        if (!CF) result--;

                        CF = (result >= 0);

                        // BCD numbers wrap around when subtraction is negative
                        if (result < 0)
                            result += 100;
                        ZF = (result == 0);

                        A = BCDToHex(result);

                        // Unlike ZF and CF, the NF flag represents the MSB after conversion
                        // to BCD.
                        NF = (A > 0x7f);

                        // extra clock cycle on CMOS in decimal mode
                        if (_cpuType == e6502Type.CMOS)
                            _extraCycles++;
                    }
                    else
                    {
                        ADC((byte)~oper);
                    }
                    PC += _currentOP.Bytes;

                    break;

                // SEC - set carry flag
                case 0x38:
                    CF = true;
                    PC += _currentOP.Bytes;
                    break;

                // SED - set decimal mode
                case 0xf8:
                    DF = true;
                    PC += _currentOP.Bytes;
                    break;

                // SEI - set interrupt disable bit
                case 0x78:
                    IF = true;
                    PC += _currentOP.Bytes;
                    break;

                // STA - store accumulator in memory
                case 0x81:
                case 0x85:
                case 0x8d:
                case 0x91:
                case 0x92:
                case 0x95:
                case 0x99:
                case 0x9d:
                    SaveOperand(_currentOP.AddressMode, A);
                    PC += _currentOP.Bytes;
                    break;

                // STX - store X in memory
                case 0x86:
                case 0x8e:
                case 0x96:
                    SaveOperand(_currentOP.AddressMode, X);
                    PC += _currentOP.Bytes;
                    break;

                // STY - store Y in memory
                case 0x84:
                case 0x8c:
                case 0x94:
                    SaveOperand(_currentOP.AddressMode, Y);
                    PC += _currentOP.Bytes;
                    break;

                // STZ - Store zero
                case 0x64:
                case 0x74:
                case 0x9c:
                case 0x9e:
                    SaveOperand(_currentOP.AddressMode, 0);
                    PC += _currentOP.Bytes;
                    break;

                // TAX - transfer accumulator to X (NZ)
                case 0xaa:
                    X = A;
                    ZF = ((X & 0xff) == 0x00);
                    NF = ((X & 0x80) == 0x80);
                    PC += _currentOP.Bytes;
                    break;

                // TAY - transfer accumulator to Y (NZ)
                case 0xa8:
                    Y = A;
                    ZF = ((Y & 0xff) == 0x00);
                    NF = ((Y & 0x80) == 0x80);
                    PC += _currentOP.Bytes;
                    break;

                // TRB - test and reset bits (Z)
                // Perform bitwise AND between accumulator and contents of memory
                case 0x14:
                case 0x1c:
                    SaveOperand(_currentOP.AddressMode, ~A & oper);
                    ZF = (A & oper) == 0x00;
                    PC += _currentOP.Bytes;
                    break;

                // TSB - test and set bits (Z)
                // Perform bitwise AND between accumulator and contents of memory
                case 0x04:
                case 0x0c:
                    SaveOperand(_currentOP.AddressMode, A | oper);
                    ZF = (A & oper) == 0x00;
                    PC += _currentOP.Bytes;
                    break;

                // TSX - transfer SP to X (NZ)
                case 0xba:
                    X = SP;
                    ZF = ((X & 0xff) == 0x00);
                    NF = ((X & 0x80) == 0x80);
                    PC += _currentOP.Bytes;
                    break;

                // TXA - transfer X to A (NZ)
                case 0x8a:
                    A = X;
                    ZF = ((A & 0xff) == 0x00);
                    NF = ((A & 0x80) == 0x80);
                    PC += _currentOP.Bytes;
                    break;

                // TXS - transfer X to SP (no flags -- some online docs are incorrect)
                case 0x9a:
                    SP = X;
                    PC += _currentOP.Bytes;
                    break;

                // TYA - transfer Y to A (NZ)
                case 0x98:
                    A = Y;
                    ZF = ((A & 0xff) == 0x00);
                    NF = ((A & 0x80) == 0x80);
                    PC += _currentOP.Bytes;
                    break;

                // The original 6502 has undocumented and erratic behavior if
                // undocumented op codes are invoked.  The 65C02 on the other hand
                // are guaranteed to be NOPs although they vary in number of bytes
                // and cycle counts.  These NOPs are listed in the OpcodeList.txt file
                // so the proper number of clock cycles are used.
                //
                // Instructions STP (0xdb) and WAI (0xcb) will reach this case.
                // For now these are treated as a NOP.
                default:
                    PC += _currentOP.Bytes;
                    break;
            }
        }

        private int GetOperand(AddressModes mode)
        {
            int oper = 0;
            switch (mode)
            {
                // Accumulator mode uses the value in the accumulator
                case AddressModes.Accumulator:
                    oper = A;
                    break;

                // Retrieves the byte at the specified memory location
                case AddressModes.Absolute:             
                    oper = memory[ GetImmWord() ];
                    break;

                // Indexed absolute retrieves the byte at the specified memory location
                case AddressModes.AbsoluteX:

                    ushort imm = GetImmWord();
                    ushort result = (ushort)(imm + X);

                    if (_currentOP.CheckPageBoundary)
                    {
                        if ((imm & 0xff00) != (result & 0xff00)) _extraCycles += 1;
                    }
                    oper = memory[ result ];
                    break;
                case AddressModes.AbsoluteY:
                    imm = GetImmWord();
                    result = (ushort)(imm + Y);

                    if (_currentOP.CheckPageBoundary)
                    {
                        if ((imm & 0xff00) != (result & 0xff00)) _extraCycles += 1;
                    }
                    oper = memory[result]; break;

                // Immediate mode uses the next byte in the instruction directly.
                case AddressModes.Immediate:
                    oper = GetImmByte();
                    break;

                // Implied or Implicit are single byte instructions that do not use
                // the next bytes for the operand.
                case AddressModes.Implied:
                    break;

                // Indirect mode uses the absolute address to get another address.
                // The immediate word is a memory location from which to retrieve
                // the 16 bit operand.
                case AddressModes.Indirect:
                    oper = GetWordFromMemory(GetImmWord());
                    break;

                // The indexed indirect modes uses the immediate byte rather than the
                // immediate word to get the memory location from which to retrieve
                // the 16 bit operand.  This is a combination of ZeroPage indexed and Indirect.
                case AddressModes.XIndirect:

                    /*
                     * 1) fetch immediate byte
                     * 2) add X to the byte
                     * 3) obtain word from this zero page address
                     * 4) return the byte located at the address specified by the word
                     */

                    oper = memory[GetWordFromMemory( (byte)(GetImmByte() + X))];
                    break;

                // The Indirect Indexed works a bit differently than above.
                // The Y register is added *after* the deferencing instead of before.
                case AddressModes.IndirectY:

                    /*
                        1) Fetch the address (word) at the immediate zero page location
                        2) Add Y to obtain the final target address
                        3)Load the byte at this address
                    */

                    ushort addr = GetWordFromMemory(GetImmByte());
                    oper = memory[addr + Y];

                    if (_currentOP.CheckPageBoundary)
                    {
                        if ((oper & 0xff00) != (addr & 0xff00)) _extraCycles++;
                    }
                    break;


                // Relative is used for branching, the immediate value is a
                // signed 8 bit value and used to offset the current PC.
                case AddressModes.Relative:
                    oper = SignExtend(GetImmByte());
                    break;

                // Zero Page mode is a fast way of accessing the first 256 bytes of memory.
                // Best programming practice is to place your variables in 0x00-0xff.
                // Retrieve the byte at the indicated memory location.
                case AddressModes.ZeroPage:
                    oper = memory[GetImmByte()];
                    break;
                case AddressModes.ZeroPageX:
                    oper = memory[(GetImmByte() + X) & 0xff];
                    break;
                case AddressModes.ZeroPageY:
                    oper = memory[(GetImmByte() + Y) & 0xff];
                    break;

                // this mode is from the 65C02 extended set
                // works like ZeroPageY when Y=0
                case AddressModes.ZeroPage0:
                    oper = memory[GetWordFromMemory((GetImmByte()) & 0xff)];
                    break;

                // for this mode do the same thing as ZeroPage
                case AddressModes.BranchExt:
                    oper = memory[GetImmByte()];
                    break;
                default:
                    break;
            }
            return oper;
        }

        private void SaveOperand(AddressModes mode, int data)
        {
            switch (mode)
            {
                // Accumulator mode uses the value in the accumulator
                case AddressModes.Accumulator:
                    A = (byte)data;
                    break;

                // Absolute mode retrieves the byte at the indicated memory location
                case AddressModes.Absolute:
                    memory[GetImmWord()] = (byte)data;
                    break;
                case AddressModes.AbsoluteX:
                    memory[GetImmWord() + X] = (byte)data;
                    break;
                case AddressModes.AbsoluteY:
                    memory[GetImmWord() + Y] = (byte)data;
                    break;

                // Immediate mode uses the next byte in the instruction directly.
                case AddressModes.Immediate:
                    throw new InvalidOperationException("Address mode " + mode.ToString() + " is not valid for this operation");

                // Implied or Implicit are single byte instructions that do not use
                // the next bytes for the operand.
                case AddressModes.Implied:
                    throw new InvalidOperationException("Address mode " + mode.ToString() + " is not valid for this operation");

                // Indirect mode uses the absolute address to get another address.
                // The immediate word is a memory location from which to retrieve
                // the 16 bit operand.
                case AddressModes.Indirect:
                    throw new InvalidOperationException("Address mode " + mode.ToString() + " is not valid for this operation");

                // The indexed indirect modes uses the immediate byte rather than the
                // immediate word to get the memory location from which to retrieve
                // the 16 bit operand.  This is a combination of ZeroPage indexed and Indirect.
                case AddressModes.XIndirect:
                    memory[GetWordFromMemory((byte)(GetImmByte() + X))] = (byte)data;
                    break;

                // The Indirect Indexed works a bit differently than above.
                // The Y register is added *after* the deferencing instead of before.
                case AddressModes.IndirectY:
                    memory[GetWordFromMemory(GetImmByte()) + Y] = (byte)data;
                    break;

                // Relative is used for branching, the immediate value is a
                // signed 8 bit value and used to offset the current PC.
                case AddressModes.Relative:
                    throw new InvalidOperationException("Address mode " + mode.ToString() + " is not valid for this operation");

                // Zero Page mode is a fast way of accessing the first 256 bytes of memory.
                // Best programming practice is to place your variables in 0x00-0xff.
                // Retrieve the byte at the indicated memory location.
                case AddressModes.ZeroPage:
                    memory[GetImmByte()] = (byte)data;
                    break;
                case AddressModes.ZeroPageX:
                    memory[(GetImmByte() + X) & 0xff] = (byte)data;
                    break;
                case AddressModes.ZeroPageY:
                    memory[(GetImmByte() + Y) & 0xff] = (byte)data;
                    break;
                case AddressModes.ZeroPage0:
                    memory[GetWordFromMemory((GetImmByte()) & 0xff)] = (byte)data;
                    break;

                // for this mode do the same thing as ZeroPage
                case AddressModes.BranchExt:
                    memory[GetImmByte()] = (byte)data;
                    break;

                default:
                    break;
            }
        }

        private ushort GetWordFromMemory(int address)
        {
            return (ushort)((memory[address + 1] << 8 | memory[address]) & 0xffff);
        }

        private ushort GetImmWord()
        {
            return (ushort)((memory[PC + 2] << 8 | memory[PC + 1]) & 0xffff);
        }

        private byte GetImmByte()
        {
            return memory[PC + 1];
        }

        private int SignExtend(int num)
        {
            if (num < 0x80)
                return num;
            else
                return (0xff << 8 | num) & 0xffff;
        }

        private void Push(byte data)
        {
            memory[(0x0100 | SP)] = data;
            SP--;
        }

        private void Push(ushort data)
        {
            // HI byte is in a higher address, LO byte is in the lower address
            memory[(0x0100 | SP)] = (byte)(data >> 8);
            memory[(0x0100 | (SP-1))] = (byte)(data & 0xff);
            SP -= 2;
        }

        private byte PopByte()
        {
            SP++;
            return memory[(0x0100 | SP)];
        }

        private ushort PopWord()
        {
            // HI byte is in a higher address, LO byte is in the lower address
            SP += 2;
            ushort idx = (ushort)(0x0100 | SP);
            return (ushort)((memory[idx] << 8 | memory[idx-1]) & 0xffff);
        }

        private void ADC(byte oper)
        {
            ushort answer = (ushort)(A + oper);
            if (CF) answer++;

            CF = (answer > 0xff);
            ZF = ((answer & 0xff) == 0x00);
            NF = (answer & 0x80) == 0x80;

            //ushort temp = (ushort)(~(A ^ oper) & (A ^ answer) & 0x80);
            VF = (~(A ^ oper) & (A ^ answer) & 0x80) != 0x00;

            A = (byte)answer;
        }

        private int HexToBCD(byte oper)
        {
            // validate input is valid packed BCD 
            if (oper > 0x99)
                throw new InvalidOperationException("Invalid BCD number: " + oper.ToString("X2"));
            if ((oper & 0x0f) > 0x09)
                throw new InvalidOperationException("Invalid BCD number: " + oper.ToString("X2"));

            return ((oper >> 4) * 10) + (oper & 0x0f);
        }

        private byte BCDToHex(int result)
        {
            if (result > 0xff)
                throw new InvalidOperationException("Invalid BCD to hex number: " + result.ToString());

            if (result <= 9)
                return (byte)result;
            else
                return (byte)(((result / 10) << 4) + (result % 10));

        }

        private void DoIRQ(ushort vector)
        {
            DoIRQ(vector, false);
        }

        private void DoIRQ(ushort vector, bool isBRK)
        {
            // Push the MSB of the PC
            Push((byte)(PC >> 8));

            // Push the LSB of the PC
            Push((byte)(PC & 0xff));

            // Push the status register
            int sr = 0x00;
            if (NF) sr = sr | 0x80;
            if (VF) sr = sr | 0x40;

            sr = sr | 0x20;             // bit 5 is unused and always 1

            if(isBRK)
                sr = sr | 0x10;         // software interrupt (BRK) pushes B flag as 1
                                        // hardware interrupt pushes B flag as 0
            if (DF) sr = sr | 0x08;
            if (IF) sr = sr | 0x04;
            if (ZF) sr = sr | 0x02;
            if (CF) sr = sr | 0x01;

            Push((byte)sr);

            // set interrupt disable flag
            IF = true;

            // On 65C02, IRQ, NMI, and RESET also clear the D flag (but not on BRK) after pushing the status register.
            if (_cpuType == e6502Type.CMOS && !isBRK)
                DF = false;

            // load program counter with the interrupt vector
            PC = GetWordFromMemory(vector);
        }

        private void CheckBranch(bool flag, int oper)
        {
            if (flag)
            {
                // extra cycle on branch taken
                _extraCycles++;

                // extra cycle if branch destination is a different page than
                // the next instruction
                if ((PC & 0xff00) != ((PC + oper) & 0xff00))
                    _extraCycles++;

                PC += (ushort)oper;
            }

        }
    }
}

पीपीसीजी में किसी ने आपका स्वागत नहीं किया, मुझे लगता है कि मैं इस मौके को ले जाऊंगा। यह एक महान पहला उत्तर है, और मैं आपको और अधिक बार देखने की उम्मीद करता हूं। मज़े करो!
स्टेन स्ट्रम

धन्यवाद @StanStrum! यह em० a६ साल पहले एक एसई पोस्ट था जो मुझे एमुलेशन और सीखने में रुचि रखता था कि ये डिवाइस वास्तव में कैसे काम करते हैं। बहुत मज़ा आ रहा है। उपरोक्त के अलावा, मेरे पास एक पूर्ण 8080 एमुलेटर और एक 8086 है जो कि लगभग 90% है।
एडम मेन्क

यह कमाल है, मुझे एक एमुलेटर और / या एक मिडलवेल प्रोग्रामिंग भाषा बनाने में दिलचस्पी है, लेकिन मेरे पास ऐसा करने के लिए समय, धैर्य या बुद्धि नहीं है
स्टेन स्ट्रम
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.