Skip to content

64bites/64spec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

64spec

6502/Commodore64 Testing Framework for KickAssembler

Video introduction

Video

Installation

Recommended way

  1. Create a dir for libraries that your KickAssembler projects use.
  2. Get the current version of the 64spec.asm file and put it in this dir along with other libraries.
  3. Import it in your spec files as .import source "64spec.asm"
  4. Make sure to pass option -libdir when compiling with KickAssembler.

If you just want to try it out

  1. Get the current version of the 64spec.asm file and put it in the same directory as your spec files.
  2. Import it in your spec files as .import source "64spec.asm"

Quick Start

1. Create file example_spec.asm

.import source "64spec.asm"

sfspec: :init_spec()
  
  // TODO: Add assertions here

  :finish_spec()

Empty Spec

2. Add first failing assertion.

.import source "64spec.asm"

sfspec: :init_spec()
  
  :assert_a_equal #42

  :finish_spec()

Empty Spec

3. Make it pass

.import source "64spec.asm"

sfspec: :init_spec()

  lda #42
  :assert_a_equal #42
  
  :finish_spec()

Empty Spec

License

The MIT License (MIT)

Copyright (c) 2015 Michał Taszycki

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.