GithubHelp home page GithubHelp logo

alfikpl / ao68000 Goto Github PK

View Code? Open in Web Editor NEW
76.0 76.0 16.0 1.56 MB

The OpenCores ao68000 IP Core is a Motorola MC68000 binary compatible processor.

License: Other

C 34.66% Java 19.64% Assembly 1.84% Verilog 43.86%

ao68000's People

Contributors

alfikpl avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ao68000's Issues

Adding Licensing Terms

We are looking for a 68k design that we can put into an FPGA that would be shipped
in a commercial product.

We'd like to use this design but can't until we understand the license terms.

thanks

altsyncram blocks should be abstracted

the altsyncram module used in ao68000 is only available on Altera. It would be preferable to have a custom memory module that instantiated the correct memory depended on the platform.

Blocking vs. Non-Blocking Assignments

ao68000.v line 2841 shows result assigned with a non-blocking assignment.

a068000.v line 2852 shows result assigned with a blocking assignment.

I don't know what that the Altera synthesizer does with mixed assignment like this
but Xilinx XST will fail and report an error.

This occurs in many places and I am sure that if this design ran on an Altera DE2-70
then the synthesizer resolved it in a consistent manner.

I could make them consistent in the source but I need to know what behavior is intended in the
design.

thanks,
Aaron Boxer

Self modifying code breaks.

If the CPU writes to an address which has already been prefetched it should flush the prefetch cache. Otherwise unknown behaviour occurs.

reproduced using ao68000 to run the atari operating system TOS1.04

Patch below... line numbers may be wrong...

Index: C:/Users/Stephen/Documents/Xilinx/AtariST/ao68000.v

--- C:/Users/Stephen/Documents/Xilinx/AtariST/ao68000.v (revision 30)
+++ C:/Users/Stephen/Documents/Xilinx/AtariST/ao68000.v (working copy)
@@ -1136,6 +1136,14 @@
CYC_O <= 1'b1;
ADR_O <= address_i[31:2];
STB_O <= 1'b1;

  •                           if ((address_i - pc_i) <= 8) begin
    
  •                               prefetch_ir_valid_32_o <= 1'b0;
    
  •                               prefetch_ir_valid_o <= 1'b0;
    
  •                               prefetch_ir_valid_80_o <= 1'b0;
    
  •                           end
    
                     if(address_i[1:0] == 2'b10 && size_i[2] == 1'b1) begin
                         DAT_O <= { 16'b0, data_write_i[31:16] };
    

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.