asim

Creating ASim problems in edX

ASim can be integrated into edX using the Custom Javascript Display and Grading problem type. First, you need to upload ASim itself into the directory of files associated with your edX course:

Here are the steps to create an edX student exercise that uses ASim:

<problem>

  <script type="loncapa/python">
import json
def verify_checksum(expect, ans): return json.loads(ans)["response"]==expect
  </script>

  <p> This text is displayed before the ASim instance. </p>

  <customresponse cfn="verify_checksum" expect="<checksum>">
    <jsinput title="ASim"
             gradefn="gradefn"
             height="600"
             width="100%"
             get_statefn="getstate"
             set_statefn="setstate"
             initial_state='{"buffers":[<bufferspecs>]}'
             html_file="/static/asim_edx.html"/>
  </customresponse>

</problem>

Grading

ASim provides a way to check the contents of particular memory locations after the student’s program has finished running. If the contents of those locations match the specified values, ASim computes a checksum of those values. When the student clicks Submit, any edits made by the student to their program are sent to the edX server, along with the computed checksum. The edX server saves student’s program and compares the student’s checksum to the expected checksum. If the checksums match, the problem is marked correct.

To add checking to an exercise:

Here’s some example test code that calls a strlen routine written by the student, passing the address of a test string in X0. When the student’s code returns an answer in X0, it’s stored at answer: and execution is halted.

// test_strlen.s: testing code for strlen.s

        .text
        .global strlen   // student provides this code...

        mov x0,#string  // pointer to test string
        bl strlen       // call strlen subroutine, answer in x0
        mov x1,#answer  // save result for later verification
        str w0,[x1]     // 32-bit store...
        hlt             // simulator will halt here

        .mverify answer,10   // expected answer is 10

        .data
answer: .word 0
string: .asciz "Hi there!\n"

When this test code is run using a correct implementation of strlen, ASim displays the following status message when execution is complete:

Memory verification successful! (checksum 4EF93F78)

This verifies that the memory location labeled answer: had the expected value (10) when execution was halted. Problem authors can run their test code using a correct implementation to get the expected checksum.

A typical graded ASim exercise includes

For example, the strlen.s template might look like

.include "test_strlen.s"  // include testing code *** MUST BE THE FIRST LINE ***

// Please implement the strlen subroutine, which computes the length
// of an ASCII string whose address is passed in X0.  The length should
// be returned in X0.

strlen:
        // your code here, leaving answer in X0

        RET

To load both the template file and the test-jig file, use Studio to modify the initial-state attribute of the jsinput tag to:

 initial_state='{"buffers":[{"name":"strlen.s","url":"strlen.s"},{"name":"test_strlen.s","url":"test_strlen.s","readonly":true}]}'

Note that the test-jig file has been marked as read-only so that it cannot be modified by the student. In this example, both strlen.s and test_strlen.s should be uploaded in Studio as part of the course files.