Skip to content

Commit

Permalink
Fix slothy imports in ntt helium script
Browse files Browse the repository at this point in the history
  • Loading branch information
hanno-becker committed Dec 23, 2023
1 parent 95b52f9 commit 40af412
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions paper/scripts/slothy_ntt_helium.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@
import argparse, logging, sys, os, time
from io import StringIO

from slothy.slothy import Slothy
from slothy.core import Config
from slothy import Slothy, Config

import targets.arm_v81m.arch_v81m as Arch_Armv81M
import targets.arm_v81m.cortex_m55r1 as Target_CortexM55r1
import targets.arm_v81m.cortex_m85r1 as Target_CortexM85r1
import slothy.targets.arm_v81m.arch_v81m as Arch_Armv81M
import slothy.targets.arm_v81m.cortex_m55r1 as Target_CortexM55r1
import slothy.targets.arm_v81m.cortex_m85r1 as Target_CortexM85r1

target_label_dict = {Target_CortexM55r1: "m55",
Target_CortexM85r1: "m85"}
Expand Down

0 comments on commit 40af412

Please sign in to comment.