{"id":14208,"date":"2022-11-04T16:43:19","date_gmt":"2022-11-04T16:43:19","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=14208"},"modified":"2022-11-04T16:43:22","modified_gmt":"2022-11-04T16:43:22","slug":"cosmac-1802-store-instructions","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/","title":{"rendered":"COSMAC 1802 Store Instructions"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to the COSMAC 1802 Store Instructions<\/h2>\n\n\n\n<p>The COSMAC 1802 Store Instructions allow us to store data to memory from the accumulator.  We&#8217;ll discuss the different types of store instructions, and how they operate.  You only have two store instructions, the STR (Store), and STXD (Store and Decrement).  You can, however, place data into registers using the PHI (Put High), and PLO (Put Low) instructions.<\/p><div id=\"bryce-4073369109\" class=\"bryce-afterfirst bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"7728240895\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>\n\n\n\n<p>We can use these instructions to store data that we will need later in or program.  Additionally, we can store data to devices that might display or record this data.  Examples include GPIO Lights, LED Displays, or LCD Displays.  You can also use these instructions to send data through the UART, or to pull data from the processor &#8220;Stack&#8221;.  Technically, the 1802 does not have a stack.  We can emulate one though through the use of it&#8217;s instruction set.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Store Instruction (STR)<\/h2>\n\n\n\n<p>Remember, the COSMAC uses a lot of indirect addressing.  The COSMAC has 16 &#8220;scratchpad&#8221; registers.  We can load a memory location into one of these 16 registers.  The STR Command will store data that is currently in the &#8220;D&#8221; Register.  We also know this as the &#8220;Accumulator&#8221;  When we execute a STR command and specify a register, the data does not go to that register.  The COSMAC sends data to the memory location that register specifies.  <\/p>\n\n\n\n<p>If you haven&#8217;t yet done so, please check out the post on the <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-load-instructions\/\">COSMAC 1802 Load instructions.<\/a>  That post will explain how you can get data into the accumulator that you wish to store.<\/p>\n\n\n\n<p>Let&#8217;s look at an example of the STR Command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MYDATA:     EQU     8200H\nRC\tEQU\t12\n\n\n            ORG         8000H\n            LOAD        RC, MYDATA\n            LDI         55H\n            STR         RC\n            END<\/code><\/pre>\n\n\n\n<p>We set up some aliases at first, but then we set the origin at 8000H.  We&#8217;ll load RC with the memory location of MYDATA.  Therefore, register RC will contain 8200H.  After that, we load the value of 55 (Hex) into the accumulator.  Finally, we store the value of 55H to the address that is in RC.  <\/p>\n\n\n\n<p>This means that if we go to memory location 8200H on the COSMAC, we will see the value of 55.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"280\" height=\"214\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png\" alt=\"\" class=\"wp-image-14213 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 280px; --smush-placeholder-aspect-ratio: 280\/214;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Store Via X and Decrement (STXD)<\/h2>\n\n\n\n<p>The Store Via X and Decrement command (STXD) will first look at the X designator.  If you wish to change where the X register points, simply use the SEX (Set X) command.  This will tell the processor which register to look at.  After that, the processor looks at this register to see what memory location to write to.  <\/p>\n\n\n\n<p>Finally, the STXD will decrement the register.   Most commonly, you will use this command in <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/03\/cosmac-processor-stack-operation\/\">STACK Operations.<\/a>  We store values to the stack from the top down.  When we load from the stack, we will use the LDXA instruction.  This will load from the stack, and advance (increment) the memory location in the register that X designates.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Alternatives to Standard COSMAC 1802 Store Instructions<\/h2>\n\n\n\n<p>There is no STXA command.  If you wish to store and advance, use the INC (Increment) command after the STR.  Additionally, there is no STX command to store via X.  If you wish to have this functionality, simply store to the same register that X designates.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Summary of the COSMAC 1802 Store Instructions<\/h2>\n\n\n\n<p>In short, there are 2 store commands.  STR, and STXD.  Both of these instructions store data that is in the accumulator.  The STR will store data to a memory location contained in the register you point to.   STXD writes to a memory location contained n the register designated by X.  It also decrements the register designated by X.  <\/p>\n\n\n\n<p>You can also store single bytes of data to registers with the PLO (Put Low), and PHI (Put High) instructions.  In a way, if all of your registers are not already in use, you could use them as memory locations to some degree.<\/p>\n\n\n\n<p>For more information, visit the <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/vintage-computers\/cosmac\/\">COSMAC Category Page!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-2352653501\" class=\"bryce-after-content bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"4667596182\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction to the COSMAC 1802 Store Instructions The COSMAC 1802 Store Instructions allow us to store data to memory from the accumulator. We&#8217;ll discuss the different types of store instructions, and how they operate. You only have two store instructions, the STR (Store), and STXD (Store and Decrement). You can, however, place data into registers <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":14213,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[821,727],"tags":[843,844],"class_list":{"0":"post-14208","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-cosmac","8":"category-vintage-computers","9":"tag-str","10":"tag-stxd","11":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>COSMAC 1802 Store Instructions - Bryce Automation<\/title>\n<meta name=\"description\" content=\"COSMAC 1802 Store Instructions to store data to memory locations in the processor. You have 2 STORE commands: STR, and STXD.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"COSMAC 1802 Store Instructions - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"COSMAC 1802 Store Instructions to store data to memory locations in the processor. You have 2 STORE commands: STR, and STXD.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/\" \/>\n<meta property=\"og:site_name\" content=\"Bryce Automation\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ricky.bryce.7\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-04T16:43:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-04T16:43:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"280\" \/>\n\t<meta property=\"og:image:height\" content=\"214\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ricky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"COSMAC 1802 Store Instructions\",\"datePublished\":\"2022-11-04T16:43:19+00:00\",\"dateModified\":\"2022-11-04T16:43:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/\"},\"wordCount\":632,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-3.png\",\"keywords\":[\"STR\",\"STXD\"],\"articleSection\":[\"COSMAC\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/\",\"name\":\"COSMAC 1802 Store Instructions - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-3.png\",\"datePublished\":\"2022-11-04T16:43:19+00:00\",\"dateModified\":\"2022-11-04T16:43:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"COSMAC 1802 Store Instructions to store data to memory locations in the processor. You have 2 STORE commands: STR, and STXD.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-3.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-3.png\",\"width\":280,\"height\":214,\"caption\":\"COSMAC 1802 Store Instructions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/04\\\/cosmac-1802-store-instructions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"COSMAC 1802 Store Instructions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/\",\"name\":\"Bryce Automation\",\"description\":\"Automating Home and Industry...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bryceautomation.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\",\"name\":\"Ricky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"caption\":\"Ricky\"},\"sameAs\":[\"http:\\\/\\\/bryceautomation.com\",\"https:\\\/\\\/www.facebook.com\\\/ricky.bryce.7\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ricky-bryce-4367a416\\\/\"],\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/author\\\/ricky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"COSMAC 1802 Store Instructions - Bryce Automation","description":"COSMAC 1802 Store Instructions to store data to memory locations in the processor. You have 2 STORE commands: STR, and STXD.","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:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/","og_locale":"en_US","og_type":"article","og_title":"COSMAC 1802 Store Instructions - Bryce Automation","og_description":"COSMAC 1802 Store Instructions to store data to memory locations in the processor. You have 2 STORE commands: STR, and STXD.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-11-04T16:43:19+00:00","article_modified_time":"2022-11-04T16:43:22+00:00","og_image":[{"width":280,"height":214,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png","type":"image\/png"}],"author":"Ricky","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"COSMAC 1802 Store Instructions","datePublished":"2022-11-04T16:43:19+00:00","dateModified":"2022-11-04T16:43:22+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/"},"wordCount":632,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png","keywords":["STR","STXD"],"articleSection":["COSMAC","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/","name":"COSMAC 1802 Store Instructions - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png","datePublished":"2022-11-04T16:43:19+00:00","dateModified":"2022-11-04T16:43:22+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"COSMAC 1802 Store Instructions to store data to memory locations in the processor. You have 2 STORE commands: STR, and STXD.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-3.png","width":280,"height":214,"caption":"COSMAC 1802 Store Instructions"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/04\/cosmac-1802-store-instructions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"COSMAC 1802 Store Instructions"}]},{"@type":"WebSite","@id":"https:\/\/bryceautomation.com\/#website","url":"https:\/\/bryceautomation.com\/","name":"Bryce Automation","description":"Automating Home and Industry...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bryceautomation.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7","name":"Ricky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","url":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","caption":"Ricky"},"sameAs":["http:\/\/bryceautomation.com","https:\/\/www.facebook.com\/ricky.bryce.7","https:\/\/www.linkedin.com\/in\/ricky-bryce-4367a416\/"],"url":"https:\/\/bryceautomation.com\/index.php\/author\/ricky\/"}]}},"_links":{"self":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/14208","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/comments?post=14208"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/14208\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/14213"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=14208"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=14208"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=14208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}