Git Product home page Git Product logo

Comments (3)

kwccoin avatar kwccoin commented on June 4, 2024 1

This run ok and may start to de-structure the whole package to see how it can be used now:

; see .travis.yml
(ql:quickload '(:cl-6502 :cl-6502-test))
(6502-tests:run! '6502-tests:6502-tests) ; can run ok as well

from cl-6502.

kwccoin avatar kwccoin commented on June 4, 2024

After correcting the spelling (reading your quicklisp doc), the followings are ok

** but still not sure how to proceed with actually using the package. <--**

(ql:quickload :cl-6502)
(ql:quickload :cl-6502-test) ; note no "s" here unlike readme
(ql:quickload :fiveam) ; seems ok
(asdf:oos 'asdf:test-op 'cl-6502) ; ok but not test anything
CL-USER> (ql:quickload :cl-6502-test)
To load "cl-6502-test":
  Load 1 ASDF system:
    cl-6502-test
; Loading "cl-6502-test"
.....
(:CL-6502-TEST)
CL-USER> (asdf:oos 'asdf:test-op 'cl-6502)
WARNING: PARSE-VERSION: "0.9.8-dev" doesn't follow asdf version numbering convention
WARNING: Invalid :version specifier "0.9.8-dev" for component "cl-6502" from file #P"/Users/ngcchk/quicklisp/local-projects/cl-6502/cl-6502.asd", using NIL instead
WARNING: Invalid :version specifier "0.9.8-dev" for component "cl-6502" from file #P"/Users/ngcchk/quicklisp/local-projects/cl-6502/cl-6502.asd", using NIL instead
WARNING: System definition file #P"/Users/ngcchk/quicklisp/local-projects/cl-6502/cl-6502.asd" contains definition for system "cl-6502-test". Please only define "cl-6502" and secondary systems with a name starting with "cl-6502/" (e.g. "cl-6502/test") in that file.
WARNING: PARSE-VERSION: "0.9.8-dev" doesn't follow asdf version numbering convention
WARNING: Invalid :version specifier "0.9.8-dev" for component "cl-6502" from file #P"/Users/ngcchk/quicklisp/local-projects/cl-6502/cl-6502.asd", using NIL instead
WARNING: Invalid :version specifier "0.9.8-dev" for component "cl-6502" from file #P"/Users/ngcchk/quicklisp/local-projects/cl-6502/cl-6502.asd", using NIL instead
WARNING: System definition file #P"/Users/ngcchk/quicklisp/local-projects/cl-6502/cl-6502.asd" contains definition for system "cl-6502-test". Please only define "cl-6502" and secondary systems with a name starting with "cl-6502/" (e.g. "cl-6502/test") in that file.
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                      "cl-6502") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "fixtures"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                  "cl-6502-test"
                                                                                  "packages") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "assembler"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                   "cl-6502-test"
                                                                                   "fixtures") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "disassembler"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                      "cl-6502-test"
                                                                                      "assembler") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "parser"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                "cl-6502-test"
                                                                                "disassembler") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "opcodes"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                 "cl-6502-test"
                                                                                 "parser") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "jit"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                             "cl-6502-test"
                                                                             "opcodes") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:PREPARE-OP
                                                     "cl-6502-test"
                                                     "perf"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                              "cl-6502-test"
                                                                              "jit") wasn't done yet!

Running test suite NIL
 Didn't run anything...huh?
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:TEST-OP
                                                     "cl-6502"), but dependency (ASDF/LISP-ACTION:LOAD-OP
                                                                                 "cl-6502") wasn't done yet!
WARNING:
   Computing just-done stamp in plan NIL for action (ASDF/LISP-ACTION:TEST-OP
                                                     "cl-6502"), but dependency (ASDF/FIND-SYSTEM:DEFINE-OP
                                                                                 "cl-6502") wasn't done yet!
#<ASDF/LISP-ACTION:TEST-OP >
#<ASDF/PLAN:SEQUENTIAL-PLAN {70098002F3}>

from cl-6502.

kwccoin avatar kwccoin commented on June 4, 2024

Trying whole morning
giving the test work and hence the bin can be run, I tried to do strangely from that path

well I cannot find the memory (example.cfg in the function test ca65 sites under amb51) and the binary even though is 16 KB ended prematurely and hence really no vector at the end but it is 100 byte short.

Trying but so far cannot .

Back to squire one, how to run a simple assembler 6502 using these codes.

May have to give up.

from cl-6502.

Related Issues (4)

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.