Given a folder structure like so:
dojo/
turbo/
foo.js
...you can use the setModulePrefix method to "register" the namespace for use with the Dojo loading system, like so:
dojo.setModulePrefix("turbo","../turbo"); // relative to the dojo root
dojo.require("turbo.foo");