-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c25837
commit 867c934
Showing
11 changed files
with
3,777 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# Instructions | ||
|
||
Recite the nursery rhyme 'This is the House that Jack Built'. | ||
|
||
> [The] process of placing a phrase of clause within another phrase of clause is called embedding. | ||
> It is through the processes of recursion and embedding that we are able to take a finite number of forms (words and phrases) and construct an infinite number of expressions. | ||
> Furthermore, embedding also allows us to construct an infinitely long structure, in theory anyway. | ||
- [papyr.com][papyr] | ||
|
||
The nursery rhyme reads as follows: | ||
|
||
```text | ||
This is the house that Jack built. | ||
This is the malt | ||
that lay in the house that Jack built. | ||
This is the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the maiden all forlorn | ||
that milked the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the man all tattered and torn | ||
that kissed the maiden all forlorn | ||
that milked the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the priest all shaven and shorn | ||
that married the man all tattered and torn | ||
that kissed the maiden all forlorn | ||
that milked the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the rooster that crowed in the morn | ||
that woke the priest all shaven and shorn | ||
that married the man all tattered and torn | ||
that kissed the maiden all forlorn | ||
that milked the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the farmer sowing his corn | ||
that kept the rooster that crowed in the morn | ||
that woke the priest all shaven and shorn | ||
that married the man all tattered and torn | ||
that kissed the maiden all forlorn | ||
that milked the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
This is the horse and the hound and the horn | ||
that belonged to the farmer sowing his corn | ||
that kept the rooster that crowed in the morn | ||
that woke the priest all shaven and shorn | ||
that married the man all tattered and torn | ||
that kissed the maiden all forlorn | ||
that milked the cow with the crumpled horn | ||
that tossed the dog | ||
that worried the cat | ||
that killed the rat | ||
that ate the malt | ||
that lay in the house that Jack built. | ||
``` | ||
|
||
[papyr]: https://papyr.com/hypertextbooks/grammar/ph_noun.htm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"authors": [ | ||
"keiravillekode" | ||
], | ||
"files": { | ||
"solution": [ | ||
"house.asm" | ||
], | ||
"test": [ | ||
"house_test.c" | ||
], | ||
"example": [ | ||
".meta/example.asm" | ||
] | ||
}, | ||
"blurb": "Output the nursery rhyme 'This is the House that Jack Built'.", | ||
"source": "British nursery rhyme", | ||
"source_url": "https://en.wikipedia.org/wiki/This_Is_The_House_That_Jack_Built" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
default rel | ||
|
||
section .rodata | ||
|
||
lyrics: | ||
db "This is the horse and the hound and the horn that belonged to the farmer sowing his corn that kept the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.", 10, 0 | ||
|
||
table: | ||
dq -1, 381, 360, 343, 323, 302, 259, 224, 182, 137, 91, 54, 0 | ||
|
||
|
||
section .text | ||
global recite | ||
|
||
; extern void recite(char *buffer, int start_verse, int end_verse); | ||
recite: | ||
cld | ||
mov r8, rsi | ||
mov r9, rdx | ||
lea rdx, [table] | ||
shl r8, 3 | ||
shl r9, 3 | ||
add r8, rdx ; address of offset for current verse | ||
add r9, rdx ; address of offset for end verse | ||
|
||
.loop: | ||
lea rsi, [lyrics] | ||
mov rcx, 7 | ||
rep movsb | ||
|
||
mov rdx, [r8] ; offset for current verse | ||
add rsi, rdx | ||
|
||
.append: | ||
lodsb | ||
stosb | ||
test al, al | ||
jnz .append | ||
|
||
dec rdi | ||
add r8, 8 ; address of offset for next verse | ||
cmp r8, r9 | ||
jle .loop | ||
|
||
ret | ||
|
||
%ifidn __OUTPUT_FORMAT__,elf64 | ||
section .note.GNU-stack noalloc noexec nowrite progbits | ||
%endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# This is an auto-generated file. | ||
# | ||
# Regenerating this file via `configlet sync` will: | ||
# - Recreate every `description` key/value pair | ||
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications | ||
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion) | ||
# - Preserve any other key/value pair | ||
# | ||
# As user-added comments (using the # character) will be removed when this file | ||
# is regenerated, comments can be added via a `comment` key. | ||
|
||
[28a540ff-f765-4348-9d57-ae33f25f41f2] | ||
description = "verse one - the house that jack built" | ||
|
||
[ebc825ac-6e2b-4a5e-9afd-95732191c8da] | ||
description = "verse two - the malt that lay" | ||
|
||
[1ed8bb0f-edb8-4bd1-b6d4-b64754fe4a60] | ||
description = "verse three - the rat that ate" | ||
|
||
[64b0954e-8b7d-4d14-aad0-d3f6ce297a30] | ||
description = "verse four - the cat that killed" | ||
|
||
[1e8d56bc-fe31-424d-9084-61e6111d2c82] | ||
description = "verse five - the dog that worried" | ||
|
||
[6312dc6f-ab0a-40c9-8a55-8d4e582beac4] | ||
description = "verse six - the cow with the crumpled horn" | ||
|
||
[68f76d18-6e19-4692-819c-5ff6a7f92feb] | ||
description = "verse seven - the maiden all forlorn" | ||
|
||
[73872564-2004-4071-b51d-2e4326096747] | ||
description = "verse eight - the man all tattered and torn" | ||
|
||
[0d53d743-66cb-4351-a173-82702f3338c9] | ||
description = "verse nine - the priest all shaven and shorn" | ||
|
||
[452f24dc-8fd7-4a82-be1a-3b4839cfeb41] | ||
description = "verse 10 - the rooster that crowed in the morn" | ||
|
||
[97176f20-2dd3-4646-ac72-cffced91ea26] | ||
description = "verse 11 - the farmer sowing his corn" | ||
|
||
[09824c29-6aad-4dcd-ac98-f61374a6a8b7] | ||
description = "verse 12 - the horse and the hound and the horn" | ||
|
||
[d2b980d3-7851-49e1-97ab-1524515ec200] | ||
description = "multiple verses" | ||
|
||
[0311d1d0-e085-4f23-8ae7-92406fb3e803] | ||
description = "full rhyme" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
AS = nasm | ||
|
||
CFLAGS = -g -Wall -Wextra -pedantic -Werror | ||
LDFLAGS = | ||
ASFLAGS = -g -F dwarf -Werror | ||
|
||
ifeq ($(shell uname -s),Darwin) | ||
ifeq ($(shell sysctl -n hw.optional.arm64 2>/dev/null),1) | ||
ALL_CFLAGS = -target x86_64-apple-darwin | ||
endif | ||
ALL_LDFLAGS = -Wl,-pie | ||
ALL_ASFLAGS = -f macho64 --prefix _ | ||
else | ||
ALL_LDFLAGS = -pie -Wl,--fatal-warnings | ||
ALL_ASFLAGS = -f elf64 | ||
endif | ||
|
||
ALL_CFLAGS += -std=c99 -fPIE -m64 $(CFLAGS) | ||
ALL_LDFLAGS += $(LDFLAGS) | ||
ALL_ASFLAGS += $(ASFLAGS) | ||
|
||
C_OBJS = $(patsubst %.c,%.o,$(wildcard *.c)) | ||
AS_OBJS = $(patsubst %.asm,%.o,$(wildcard *.asm)) | ||
ALL_OBJS = $(filter-out example.o,$(C_OBJS) $(AS_OBJS) vendor/unity.o) | ||
|
||
CC_CMD = $(CC) $(ALL_CFLAGS) -c -o $@ $< | ||
|
||
all: tests | ||
@./$< | ||
|
||
tests: $(ALL_OBJS) | ||
@$(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) -o $@ $(ALL_OBJS) | ||
|
||
%.o: %.asm | ||
@$(AS) $(ALL_ASFLAGS) -o $@ $< | ||
|
||
%.o: %.c | ||
@$(CC_CMD) | ||
|
||
vendor/unity.o: vendor/unity.c vendor/unity.h vendor/unity_internals.h | ||
@$(CC_CMD) | ||
|
||
clean: | ||
@rm -f *.o vendor/*.o tests | ||
|
||
.PHONY: all clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
default rel | ||
|
||
section .text | ||
global recite | ||
recite: | ||
; Provide your implementation here | ||
ret | ||
|
||
%ifidn __OUTPUT_FORMAT__,elf64 | ||
section .note.GNU-stack noalloc noexec nowrite progbits | ||
%endif |
Oops, something went wrong.