Re: [M100] Annotated disassemble of T102 rom

2020-06-28 Thread Brian White
This is great. Thank you very much. -- bkw On Sun, Jun 28, 2020, 2:45 PM Erik van der Tier wrote: > Hi All, > > I was getting a bit tired of all the manual work on cleaning up the > disassembly, labeling, merging the rest of the comments… So I wrote a small > Rust program to do all the work

Re: [M100] Annotated disassemble of T102 rom

2020-06-28 Thread Erik van der Tier
Hi All, I was getting a bit tired of all the manual work on cleaning up the disassembly, labeling, merging the rest of the comments… So I wrote a small Rust program to do all the work for me. I ended up having it clean up the layout as well, so everything is really nicely laid out in columns.

Re: [M100] Annotated disassemble of T102 rom

2020-06-21 Thread Erik van der Tier
Great, thanks! Your comments are really helping with the process of translating to a full assembly file, especially for finding logical names for ‘intra routine’ labels. I see that in this version you’ve also documented the ’split-instruction’ trick that is used in for example Plot/Unplot to

Re: [M100] Annotated disassemble of T102 rom

2020-06-21 Thread Erik van der Tier
Hi All, Works progressing nicely on this Rom source code project. I’ve added a README.md to the repository, which I hopes does justice to all the work that has been done before to create my starting point. I’ve also now started working on the new OS Rom source file, which I hope to get to the

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Erik van der Tier
I’ve set up a GitHub repo: https://github.com/eriktier/RomT102Disassembly . This version is definitely still a work in progress, but I’m getting there with merging comments and DB/DW’s (I’m careful to really compare them closely, as I’ve already

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Erik van der Tier
Ok, clear. Would be cool! > On 18 Jun 2020, at 20:40, Ken Pettit wrote: > > Hi Erik, > > No. This is something I have considered creating, but have not had the time. > It would likely only take a day or so to pull it out though. The biggest > task would be to pass in the parameters for

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Ken Pettit
Hi Erik, No. This is something I have considered creating, but have not had the time. It would likely only take a day or so to pull it out though. The biggest task would be to pass in the parameters for model, linker script, etc. This stuff is currently all specified in the GUI and

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Erik van der Tier
Hi, Is there a standalone version of the assembler that’s part of VirtualT? Erik > On 17 Jun 2020, at 19:28, Ken Pettit wrote: > > Erik, > > I have MANY, MANY more lines commented here: > > http://www.club100.org/memfiles/index.php?=0==Ken%20Pettit/M100%20ROM%20Disassembly > > Ken > > On

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Erik van der Tier
I’m about to put what I’ve got by now on GitHub. I’m actually thinking of replacing at least all the VDI code with other functionality and perhaps even all the Cassette logic. It would obviously break compatibility with the basic partly, but I’m interesting in trying to even replace the basic

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Stephen Adolph
the rom to start with is the KC85 rom. On Thu, Jun 18, 2020 at 1:38 PM Kurt McCullum wrote: > If you can find 768 bytes (I think that's the right size) then you could > fit TEENY in there. > > Kurt > > On Thu, Jun 18, 2020, at 10:31 AM, Brian K. White wrote: > > On 6/17/20 11:35 AM, Erik van

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Kurt McCullum
If you can find 768 bytes (I think that's the right size) then you could fit TEENY in there. Kurt On Thu, Jun 18, 2020, at 10:31 AM, Brian K. White wrote: > On 6/17/20 11:35 AM, Erik van der Tier wrote: > > Hi, > > > > I’m currently well on my way to merge the annotated M100 rom with a > >

Re: [M100] Annotated disassemble of T102 rom

2020-06-18 Thread Brian K. White
On 6/17/20 11:35 AM, Erik van der Tier wrote: Hi, I’m currently well on my way to merge the annotated M100 rom with a disassemble of the T102 rom. This will include documentation of the differences. I hope to create a working .asm file with labels and such that can be reassembled into a

Re: [M100] Annotated disassemble of T102 rom

2020-06-17 Thread Ken Pettit
Erik, I have MANY, MANY more lines commented here: http://www.club100.org/memfiles/index.php?=0==Ken%20Pettit/M100%20ROM%20Disassembly Ken On 6/17/20 10:22 AM, Erik van der Tier wrote: I’m currently merging the standard virtual-t output, but any additional notes and comments would be great

Re: [M100] Annotated disassemble of T102 rom

2020-06-17 Thread Erik van der Tier
I’m currently merging the standard virtual-t output, but any additional notes and comments would be great to add in! Cheers, Erik > On 17 Jun 2020, at 18:10, Ken Pettit wrote: > > Hi Erik, > > I presume you are also referencing the additional M100 ROM annotations I did > by hand which

Re: [M100] Annotated disassemble of T102 rom

2020-06-17 Thread Erik van der Tier
Sounds like a plan, I’m currently doing a first pass getting the routine headercomments in and translating the none sense opcodes into db and dw’s from the m100 dis. I’ll set up a github repo once I’m through this first pass. Next pass will be find and replace on all standard addresses and

Re: [M100] Annotated disassemble of T102 rom

2020-06-17 Thread Ken Pettit
Hi Erik, I presume you are also referencing the additional M100 ROM annotations I did by hand which are not part of the VirtualT standard output (and quite extensive)? Ken On 6/17/20 8:35 AM, Erik van der Tier wrote: Hi, I’m currently well on my way to merge the annotated M100 rom with a

Re: [M100] Annotated disassemble of T102 rom

2020-06-17 Thread Stephen Adolph
Hi, it would be great to make this collaborative. I have a lot of my own notes on a disassembly, and I also have a paper disassembly that I acquired a while back. On Wed, Jun 17, 2020 at 11:35 AM Erik van der Tier wrote: > Hi, > > I’m currently well on my way to merge the annotated M100 rom

[M100] Annotated disassemble of T102 rom

2020-06-17 Thread Erik van der Tier
Hi, I’m currently well on my way to merge the annotated M100 rom with a disassemble of the T102 rom. This will include documentation of the differences. I hope to create a working .asm file with labels and such that can be reassembled into a functioning Rom (I’m working my way towards a custom