{"id":2915,"date":"2024-10-29T15:43:48","date_gmt":"2024-10-29T15:43:48","guid":{"rendered":"https:\/\/www.robertprice.co.uk\/robblog\/?p=2915"},"modified":"2024-10-29T15:43:48","modified_gmt":"2024-10-29T15:43:48","slug":"rc2024-part-13-my-rc2014-mac-development-environment","status":"publish","type":"post","link":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/","title":{"rendered":"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">As part of this year&#8217;s <a href=\"https:\/\/www.retrochallenge.org\/\">Retro Challenge<\/a>, I&#8217;ve been writing Z80 assembly language. I wanted to cover what tools I&#8217;ve been using to do this on my Mac.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/code.visualstudio.com\/\">Visual Studio Code<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/github.com\/z00m128\/sjasmplus\">SjASMPlus<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/z88dk.org\/site\/\">Z88DK-appmake<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Visual Studio Code is a great programmer&#8217;s text editor from Microsoft. It&#8217;s free and has a lot of extensions. I use the <a href=\"https:\/\/marketplace.visualstudio.com\/items?itemName=Imanolea.z80-asm\">Z80 Assembly extension<\/a>. This provides syntax highlighting for my code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">SjASMPlus is a free Z80 assembler. I use this to assemble my source code into a binary file. In your source code you need to include an OUTPUT statement. This is the filename of the output binary file. To keep things easy I use the same filename as source code, but with a different extension. It is capable to splitting the output into multiple files, but that is too advanced for me at the moment.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I then need to get this binary file onto my <a href=\"https:\/\/rc2014.co.uk\/\">RC2014<\/a>. To do this I use z88dk-appmake from the Z88DK development tools. This can take the binary and turn it into Intel formatted hex. This can then be pasted into a hexloader on the RC2014. SCM has one built in.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Visual Studio Code offers <a href=\"https:\/\/code.visualstudio.com\/docs\/editor\/tasks\">Tasks<\/a>, which lets us run jobs directly inside Visual Studio Code. I have created several tasks. One runs SjASMPlus on the current file. One runs z88dk-appmake on the generated binary to create the hex file. One uploads it to the RC2014. One runs it on the RC2014. There is also a combined build task that runs assembles, transfers, and runs the current code on the connected RC2014.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I make some assumptions in this tasks.json file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I assume this is always connected to my RC2014 Classic 2 on a fixed device that is already connected using <a href=\"https:\/\/formulae.brew.sh\/formula\/minicom\">minicom<\/a>. I could include stty commands in the tasks.json file to configure the connection. However, I always have minicom open in another window so this isn&#8217;t needed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I assume I&#8217;ve always set the OUTPUT to be the same filename as the source code, just with a .z80 extension.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I assume the code has been assembled to address $9000.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The individual tasks work well, but the combined task that chains them together can sometimes fail. The issue here seems to be when I cat the hex to the RC2014. I&#8217;ve found piping this through an echo instead of directly redirecting to the device is more likely to succeed. If this fails, I manually cat the hex file to the RC2014 in a shell window.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve found these tasks have really sped up my development time.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is my current tasks.json setup for Visual Studio Code RC2014 development.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \/\/ See https:\/\/go.microsoft.com\/fwlink\/?LinkId=733558\n    \/\/ for the documentation about the tasks.json format\n    \"version\": \"2.0.0\",\n    \"tasks\": &#91;\n        {\n            \"label\": \"RC2014: sjasmplus\",\n            \"type\": \"shell\",\n            \"command\": \"sjasmplus --fullpath ${file}\", \n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": false\n            },\n            \"options\": {\n                \"cwd\": \"${fileDirname}\"\n            },\n            \"presentation\": {\n                \"group\": \"RC2014\"\n            }\n        },\n        {\n            \"label\": \"RC2014: appmake\",\n            \"type\": \"shell\",\n            \"command\": \"z88dk-appmake +hex --org 0x9000 -b ${fileBasenameNoExtension}.z80\",\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": false\n            },\n            \"options\": {\n                \"cwd\": \"${fileDirname}\"\n            },\n            \"presentation\": {\n                \"group\": \"RC2014\"\n            }\n        },\n        {\n            \"label\": \"RC2014: Deploy to SCM\",\n            \"type\": \"shell\",\n            \"command\": \"cat ${fileDirname}${\/}${fileBasenameNoExtension}.ihx | echo > \/dev\/tty.usbmodem06351\",\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": false\n            },\n            \"options\": {\n                \"cwd\": \"${fileDirname}\"\n            },\n            \"presentation\": {\n                \"group\": \"RC2014\"\n            }\n        },\n        {\n            \"label\": \"RC2014: Run on SCM\",\n            \"type\": \"shell\",\n            \"command\": \"echo -e \\\"g 9000\\r\\n\\\" > \/dev\/tty.usbmodem06351\",\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": false\n            },\n            \"options\": {\n                \"cwd\": \"${fileDirname}\"\n            },\n            \"presentation\": {\n                \"group\": \"RC2014\"\n            }\n        },\n        {\n            \"label\": \"RC2014: Build\",\n            \"dependsOrder\": \"sequence\",\n            \"dependsOn\": &#91;\"RC2014: sjasmplus\", \"RC2014: appmake\"],\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": false\n            }\n        },\n        {\n            \"label\": \"RC2014: Build, Deploy, and Run\",\n            \"dependsOrder\": \"sequence\",\n            \"dependsOn\": &#91;\"RC2014: sjasmplus\", \"RC2014: appmake\",\"RC2014: Deploy to SCM\",\"RC2014: Run on SCM\"],\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": true\n            }\n        }\n         \n    ]\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>As part of this year&#8217;s Retro Challenge, I&#8217;ve been writing Z80 assembly language. I wanted to cover what tools I&#8217;ve been using to do this on my Mac. Visual Studio Code is a great programmer&#8217;s text editor from Microsoft. It&#8217;s free and has a lot of extensions. I use the Z80 Assembly extension. This provides &hellip; <a href=\"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":2897,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[113],"tags":[145,117,115,151,149,119,153],"class_list":["post-2915","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-rc2024","tag-assembly-language","tag-rc2014","tag-rc2024","tag-sjasmplus","tag-visual-studio-code","tag-z80","tag-z88dk"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment - Robert Price<\/title>\n<meta name=\"description\" content=\"How to use Visual Studio Code, SjASMPlus, and Z88dk on a Mac to develop Z80 assembly language programs for the RC2014 computer.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment - Robert Price\" \/>\n<meta property=\"og:description\" content=\"How to use Visual Studio Code, SjASMPlus, and Z88dk on a Mac to develop Z80 assembly language programs for the RC2014 computer.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/\" \/>\n<meta property=\"og:site_name\" content=\"Robert Price\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-29T15:43:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.robertprice.co.uk\/robblog\/assets\/PCB1_1_Populated.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"650\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"rob\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rob\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/\"},\"author\":{\"name\":\"rob\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/#\\\/schema\\\/person\\\/fac6d5b076e0e14e1fb13e15b542a6c5\"},\"headline\":\"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment\",\"datePublished\":\"2024-10-29T15:43:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/\"},\"wordCount\":456,\"image\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/assets\\\/PCB1_1_Populated.jpg\",\"keywords\":[\"Assembly Language\",\"RC2014\",\"RC2024\",\"SjASMPlus\",\"Visual Studio Code\",\"Z80\",\"Z88DK\"],\"articleSection\":[\"RC2024\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/\",\"url\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/\",\"name\":\"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment - Robert Price\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/assets\\\/PCB1_1_Populated.jpg\",\"datePublished\":\"2024-10-29T15:43:48+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/#\\\/schema\\\/person\\\/fac6d5b076e0e14e1fb13e15b542a6c5\"},\"description\":\"How to use Visual Studio Code, SjASMPlus, and Z88dk on a Mac to develop Z80 assembly language programs for the RC2014 computer.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/assets\\\/PCB1_1_Populated.jpg\",\"contentUrl\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/assets\\\/PCB1_1_Populated.jpg\",\"width\":1200,\"height\":650,\"caption\":\"The Rotary Encoder module for the RC2014.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/rc2024-part-13-my-rc2014-mac-development-environment\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/#website\",\"url\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/\",\"name\":\"Robert Price\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.robertprice.co.uk\\\/robblog\\\/#\\\/schema\\\/person\\\/fac6d5b076e0e14e1fb13e15b542a6c5\",\"name\":\"rob\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f0eb511179100a4e968abc70403e33686e6ab3e992e392bedd2ccac01da666c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f0eb511179100a4e968abc70403e33686e6ab3e992e392bedd2ccac01da666c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f0eb511179100a4e968abc70403e33686e6ab3e992e392bedd2ccac01da666c?s=96&d=mm&r=g\",\"caption\":\"rob\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment - Robert Price","description":"How to use Visual Studio Code, SjASMPlus, and Z88dk on a Mac to develop Z80 assembly language programs for the RC2014 computer.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/","og_locale":"en_GB","og_type":"article","og_title":"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment - Robert Price","og_description":"How to use Visual Studio Code, SjASMPlus, and Z88dk on a Mac to develop Z80 assembly language programs for the RC2014 computer.","og_url":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/","og_site_name":"Robert Price","article_published_time":"2024-10-29T15:43:48+00:00","og_image":[{"width":1200,"height":650,"url":"https:\/\/www.robertprice.co.uk\/robblog\/assets\/PCB1_1_Populated.jpg","type":"image\/jpeg"}],"author":"rob","twitter_card":"summary_large_image","twitter_misc":{"Written by":"rob","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#article","isPartOf":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/"},"author":{"name":"rob","@id":"https:\/\/www.robertprice.co.uk\/robblog\/#\/schema\/person\/fac6d5b076e0e14e1fb13e15b542a6c5"},"headline":"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment","datePublished":"2024-10-29T15:43:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/"},"wordCount":456,"image":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robertprice.co.uk\/robblog\/assets\/PCB1_1_Populated.jpg","keywords":["Assembly Language","RC2014","RC2024","SjASMPlus","Visual Studio Code","Z80","Z88DK"],"articleSection":["RC2024"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/","url":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/","name":"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment - Robert Price","isPartOf":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#primaryimage"},"image":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robertprice.co.uk\/robblog\/assets\/PCB1_1_Populated.jpg","datePublished":"2024-10-29T15:43:48+00:00","author":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/#\/schema\/person\/fac6d5b076e0e14e1fb13e15b542a6c5"},"description":"How to use Visual Studio Code, SjASMPlus, and Z88dk on a Mac to develop Z80 assembly language programs for the RC2014 computer.","breadcrumb":{"@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#primaryimage","url":"https:\/\/www.robertprice.co.uk\/robblog\/assets\/PCB1_1_Populated.jpg","contentUrl":"https:\/\/www.robertprice.co.uk\/robblog\/assets\/PCB1_1_Populated.jpg","width":1200,"height":650,"caption":"The Rotary Encoder module for the RC2014."},{"@type":"BreadcrumbList","@id":"https:\/\/www.robertprice.co.uk\/robblog\/rc2024-part-13-my-rc2014-mac-development-environment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.robertprice.co.uk\/robblog\/"},{"@type":"ListItem","position":2,"name":"RC2024 \u2013 Part 13 \u2013 My RC2014 Mac Development Environment"}]},{"@type":"WebSite","@id":"https:\/\/www.robertprice.co.uk\/robblog\/#website","url":"https:\/\/www.robertprice.co.uk\/robblog\/","name":"Robert Price","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.robertprice.co.uk\/robblog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.robertprice.co.uk\/robblog\/#\/schema\/person\/fac6d5b076e0e14e1fb13e15b542a6c5","name":"rob","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/6f0eb511179100a4e968abc70403e33686e6ab3e992e392bedd2ccac01da666c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6f0eb511179100a4e968abc70403e33686e6ab3e992e392bedd2ccac01da666c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6f0eb511179100a4e968abc70403e33686e6ab3e992e392bedd2ccac01da666c?s=96&d=mm&r=g","caption":"rob"}}]}},"_links":{"self":[{"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/posts\/2915","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/comments?post=2915"}],"version-history":[{"count":3,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/posts\/2915\/revisions"}],"predecessor-version":[{"id":2921,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/posts\/2915\/revisions\/2921"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/media\/2897"}],"wp:attachment":[{"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/media?parent=2915"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/categories?post=2915"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.robertprice.co.uk\/robblog\/wp-json\/wp\/v2\/tags?post=2915"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}