Search found 43 matches

by nora23169
Tue Feb 04, 2025 4:45 am
Forum: Newbies
Topic: Let's start at the very beginning...
Replies: 105
Views: 14242

Re: Let's start at the very beginning...

Sorry for being so late. My motivation was burnt out, so I focused on getting back on track. I'm currently creating an emulator for MOS6502 using Python. It will take some time, but I appreciate your help.
by nora23169
Tue Jan 21, 2025 11:35 pm
Forum: Newbies
Topic: I'm really sorry for the delay
Replies: 6
Views: 2858

Re: I'm really sorry for the delay

So, I'll try using my own 8-bit CPU with a reset interrupt similar to the 6502.I'll try making a simple one with c.
by nora23169
Tue Jan 21, 2025 12:04 am
Forum: Newbies
Topic: I'm really sorry for the delay
Replies: 6
Views: 2858

Re: I'm really sorry for the delay

During that time, I was feeling burnt out, so I watched YouTube videos from the Unix Archive to try to regain motivation and the motivation to build my own CPU and OS.
by nora23169
Mon Jan 20, 2025 8:54 am
Forum: Newbies
Topic: I'm really sorry for the delay
Replies: 6
Views: 2858

I'm really sorry for the delay

I'm really sorry for the delay
by nora23169
Thu Jan 16, 2025 3:37 am
Forum: Newbies
Topic: Chat: Let's talk about OS development
Replies: 1
Views: 2061

Chat: Let's talk about OS development

Let's talk about OS development
by nora23169
Tue Dec 17, 2024 12:20 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

There's still some terrible code right now so I'm fixing it myself. Please wait for a while.
by nora23169
Tue Dec 17, 2024 12:04 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

There may still be some strange parts, but I have defined it.This is a CPU made with custom instructions called mos6503, but I will improve the quality in various parts so that it is similar to mos6502.:CODE:


#include <stdio.h>
#include <stdlib.h>

// memory size(Test)
#define MEM_SIZE 0xFFFF ...
by nora23169
Mon Dec 16, 2024 10:23 pm
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

For now, this is all I can do as far as progress is concerned.
#define PC 0
int data_bus;
by nora23169
Mon Dec 16, 2024 9:49 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

BigEd wrote:
Github is absolutely fine for almost all hobbyists and almost everyone here. There are just a couple of people here who always object. That is their problem!
by nora23169
Mon Dec 16, 2024 7:05 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

I created a user account for you all: Username: user1
Password: user1
by nora23169
Mon Dec 16, 2024 6:46 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

I have published it. The folder is still empty, but if you would like to please: https://dcf7-119-173-26-116.ngrok-free.app
by nora23169
Mon Dec 16, 2024 6:14 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

In order to learn how to use subversion, I will create and improve a simulator for learning how to make a mos6502 simulator with c.
by nora23169
Mon Dec 16, 2024 4:48 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

Ok, I'm going to use sourceforge.net from now on, since it's easier to log in than github.
by nora23169
Mon Dec 16, 2024 4:19 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

So why not provide it on another platform instead of github? What platform should we use? Any recommendations?
by nora23169
Mon Dec 16, 2024 2:15 am
Forum: Newbies
Topic: simulator
Replies: 42
Views: 9109

Re: simulator

I'm sorry for saying something unnecessary yesterday, but I'm not familiar with Python, so I wrote a simulator that I didn't understand well, and it ended up being pointless. I'll try studying CPU again.
Accurate simulation of the 6502 is not an easy thing to do. It will take patience on your part ...