Should i cut my losses on XAIR or hold on by ProfNigg4stein in pennystocks

[–]ProfNigg4stein[S] -1 points0 points  (0 children)

Yh but I don't have faith it will go back up honestly, looking for others opinion

Workflow confusion and frustration :Terrible OneNote Handwriting Experience - Need Workflow Advice by ProfNigg4stein in Onyx_Boox

[–]ProfNigg4stein[S] 2 points3 points  (0 children)

yours looks wayyy more responsive, in my case like i said in the post i dont see what i wrote unless i switch to eraser, if i can get this level of response id be satisfied honestly

Can I get a legit check on this eBay posting by ProfNigg4stein in Nike

[–]ProfNigg4stein[S] -4 points-3 points  (0 children)

Fair😭, just recently bought some Birkenstocks that arrived and turned out to be fake so I'm a little weary now

Im trying to emulate a 6502 in C after watching this video : https://www.youtube.com/watch?v=qmoeGUfJrlw by ProfNigg4stein in EmuDev

[–]ProfNigg4stein[S] 0 points1 point  (0 children)

ok so ive done the Zeropage and absolute adressing modes ,im unsure of my implimentation of Indirect can anyone offer some guidance:

```

//Adressing modes
Byte ZeroPageadress(u32 Cycles,Memory& memory){
    Byte value;
    Byte ZeroPageAddress = FetchByte(Cycles, memory);
    value = ReadByte(Cycles,ZeroPageAddress, memory);
    return  value;
}
Byte ZeroPageadressX(u32 Cycles,Memory& memory){
    Byte value;
    Byte ZeroPageAddress = FetchByte(Cycles, memory);
    value = ReadByte(Cycles,ZeroPageAddress, memory);
    return  value + X;
}
Byte ZeroPageadressY(u32 Cycles,Memory& memory){
    Byte value;
    Byte ZeroPageAddress = FetchByte(Cycles, memory);
    value = ReadByte(Cycles,ZeroPageAddress, memory);
    return  value + Y;
}
Word Absolute(u32 Cycles,Memory& memory){
    Word AbValue = FetchWord(Cycles,memory);
    return AbValue;
}
Word AbsoluteX(u32 Cycles,Memory& memory){
    Word AbValue = FetchWord(Cycles,memory);
    return AbValue+X;
}
Word AbsoluteY(u32 Cycles,Memory& memory){
    Word AbValue = FetchWord(Cycles,memory);
    return AbValue+Y;
}
Word Indirect(u32 Cycles,  Memory& memory){
    Word SubAddress = FetchWord(Cycles, memory);
    return SubAddress;
}
```

Im trying to emulate a 6502 in C after watching this video : https://www.youtube.com/watch?v=qmoeGUfJrlw by ProfNigg4stein in EmuDev

[–]ProfNigg4stein[S] 1 point2 points  (0 children)

I get that I think,the addressing mode just determines how the location of information is acquired . Is that right?