/[VRac]/M6502/M6502.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /M6502/M6502.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 42 by dpavlin, Tue Jul 31 09:37:01 2007 UTC revision 68 by dpavlin, Tue Jul 31 17:15:54 2007 UTC
# Line 6  use warnings; Line 6  use warnings;
6  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
7  use Carp qw/confess/;  use Carp qw/confess/;
8  use Exporter 'import';  use Exporter 'import';
9  our @EXPORT = qw'@mem $PC $A $P $X $Y $S $IPeriod $run_for';  our @EXPORT = qw'@mem $PC $A $P $X $Y $S $IPeriod $run_for $debug';
10    
11  =head1 NAME  =head1 NAME
12    
13  M6502 - perl bindings for 6502 emulator  M6502 - perl bindings for M6502 CPU emulator
14    
15  =cut  =cut
16    
17  my $debug = 1;  my $debug = 0;
18    
19  our $VERSION = qw(0.0.1);  our $VERSION = qw(0.0.1);
20    
# Line 29  our $IPeriod = 1; Line 29  our $IPeriod = 1;
29  # Exec6502 cycles  # Exec6502 cycles
30  our $run_for = 0;  our $run_for = 0;
31    
32  =head1 init  =head1 FUNCTIONS
33    
34    =head2 init
35    
36  Called before C<Run6502>  Called before C<Run6502>
37    
# Line 37  Called before C<Run6502> Line 39  Called before C<Run6502>
39    
40  sub init {  sub init {
41          my $self = shift;          my $self = shift;
         warn dump(@_);  
42          warn "inside init low-level M6502 from $self\n";          warn "inside init low-level M6502 from $self\n";
43  };  };
44    
# Line 52  Read from memory Line 53  Read from memory
53  sub read {  sub read {
54          my ($addr) = @_;          my ($addr) = @_;
55          my $byte = $mem[$addr];          my $byte = $mem[$addr];
56          warn "# read(",dump(@_),") = ",dump( $byte ),"\n" if $debug;          warn "## M6502::read(",dump(@_),") = ",dump( $byte ),"\n" if $debug;
57          return $byte;          return $byte;
58  }  }
59    
# Line 65  Write into emory Line 66  Write into emory
66  =cut  =cut
67    
68  sub write {  sub write {
69          warn "# write(",dump(@_),")\n" if $debug;          warn "## M6502::write(",dump(@_),")\n" if $debug;
70          my ($addr,$byte) = @_;          my ($addr,$byte) = @_;
71          $mem[$addr] = $byte;          $mem[$addr] = $byte;
72  }  }
# Line 82  functions. If you don't want to trigger Line 83  functions. If you don't want to trigger
83  sub poke_code {  sub poke_code {
84          my $self = shift;          my $self = shift;
85          my $addr = shift;          my $addr = shift;
86          warn sprintf("# poke_code(%04x,%s)\n", $addr, dump( @_ )) if $self->debug;          warn sprintf("## M6502::poke_code(%04x,%s)\n", $addr, dump( @_ )) if $self->debug;
87          #$mem[$addr++] = $_ foreach @_;          #$mem[$addr++] = $_ foreach @_;
88          $self->write($addr++, $_) foreach @_;          # call low-level write
89            Arch::write($addr++, $_) foreach @_;
90  }  }
91    
92  =head2 write_chunk  =head2 ram
93    
94  Low-level update of memory, overriding user specified MMU functions C<read> and C<write>  Read series of bytes into memory without MMU interaction
95    
96    $emu->write_chunk( $address, $chunk_of_data );    my @code = $emu->ram( 0xc000, 0xc1000 );
97    
98  =cut  =cut
99    
100  sub write_chunk {  sub ram {
101          my ($self, $addr, $chunk) = @_;          my $self = shift;
102          my $len = length($chunk);          my ( $from, $to ) = @_;
103          splice @mem, $addr, $len, unpack('C*', $chunk);          warn sprintf("## M6502::ram(%04x,%04x)\n", $from, $to) if $self->debug;
104            return @mem[ $from .. $to ];
105  }  }
106    
107  =head2 ram  =head2 write_chunk
108    
109  Read searies of bytes from memory without passing through MMU  Low-level update of memory, overriding user specified MMU functions C<read> and C<write>
110    
111    $emu->ram( $from, $to );    $emu->write_chunk( $address, $chunk_of_data );
112    
113  =cut  =cut
114    
115  sub ram {  sub write_chunk {
116          my $self = shift;          my ($self, $addr, $chunk) = @_;
117          my ($from,$to) = @_;          my $len = length($chunk);
118          warn "ram($from,$to)\n";          splice @mem, $addr, $len, unpack('C*', $chunk);
         if ($from + $to) {  
                 printf "ram %04x - %04x\n", $from, $to;  
                 return @mem[$from .. $to - 1];  
         }  
         printf "ram %04x\n", $from;  
         return $mem[$from] if defined($from);  
         confess "no from address";  
119  }  }
120    
121  =head2 prompt  =head2 prompt
# Line 140  called by C<perl.c> to push changes in r Line 136  called by C<perl.c> to push changes in r
136  =cut  =cut
137    
138  sub push_R {  sub push_R {
139          warn "push_R(",dump(@_),")\n";          warn "## M6502::push_R(",dump(@_),")\n" if $debug;
140          my ( $a, $p, $x, $y, $s, $pc ) = @_;          my ( $a, $p, $x, $y, $s, $pc ) = @_;
141          $PC = $pc;          $PC = $pc;
142          $S=$s; $X=$x; $Y=$y; $P=$p; $A=$a;          $S=$s; $X=$x; $Y=$y; $P=$p; $A=$a;
# Line 149  sub push_R { Line 145  sub push_R {
145    
146  =head2 dump_R  =head2 dump_R
147    
148  helper function which dumps registers  helper function which dumps registers in humanly readable form
149    
150      my $dump = dump_R;
151    
152  =cut  =cut
153    
154  sub dump_R {  sub dump_R {
155          warn sprintf("PC: %04x A:%02x P:%02x X:%02x Y:%02x S:%02x\n", $PC, $A, $P, $X, $Y, $S);          my $dump = sprintf(" PC: %04x A:%02x P:%02x X:%02x Y:%02x S:%02x\n", $PC, $A, $P, $X, $Y, $S);
156            warn "## M6502::dump_R $dump" if $debug;
157            return $dump;
158  }  }
159    
160    =head1 SEE ALSO
161    
162    L<Orao> is sample implementation using this module
163    
164    =head1 AUTHOR
165    
166    Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>
167    
168    =head1 COPYRIGHT & LICENSE
169    
170    Copyright 2007 Dobrica Pavlinusic, All Rights Reserved.
171    
172    This program is free software; you can redistribute it and/or modify it
173    under the same terms as Perl itself.
174    
175    =cut
176  1;  1;

Legend:
Removed from v.42  
changed lines
  Added in v.68

  ViewVC Help
Powered by ViewVC 1.1.26